{"id":11641,"date":"2022-09-28T03:34:47","date_gmt":"2022-09-27T22:04:47","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/"},"modified":"2022-09-28T03:34:47","modified_gmt":"2022-09-27T22:04:47","slug":"solved-how-to-count-increasing-profit-streak","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/","title":{"rendered":"[Solved] how to count increasing profit streak?"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-45432845\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"45432845\" data-parentid=\"45423092\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>To calculate <code>Years of Increases<\/code> enter the following formula in <code>Cell L2<\/code><\/p>\n<pre><code>=IFERROR(COLUMN(J2)-COLUMN(INDEX(B2:J2,,MATCH(9.99E+307,IF(B2:J2&gt;A2:I2=FALSE,1,\"\")))),0)\n<\/code><\/pre>\n<p>and to calculate <code>Years of Steady Profits<\/code> enter below formula in <code>Cell M2<\/code><\/p>\n<pre><code>=IFERROR(COLUMN(J2)-COLUMN(INDEX(B2:J2,,MATCH(9.99E+307,IF(B2:J2&gt;=A2:I2=FALSE,1,\"\")))),0)\n<\/code><\/pre>\n<p>Both the above formulas are <strong>array formula<\/strong> so commit by pressing <kbd>Ctrl<\/kbd>+<kbd>Shift<\/kbd>+<kbd>Enter<\/kbd>. Drag\/Copy down as required. See image for reference.<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-how-to-count-increasing-profit-streak.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-how-to-count-increasing-profit-streak.png\" alt=\"enter image description here\"><\/a><\/p>\n<hr>\n<p>In case you want this formula to be dynamic i.e. after adding new column for another year you want formula to work correctly then consider the following.<\/p>\n<p>In <code>Column K<\/code> enter some dummy character say <code>x<\/code> and then enter the following formula in <code>Cell L2<\/code><\/p>\n<pre><code>=IFERROR(COLUMN(K2)-COLUMN(INDEX(B2:K2,,MATCH(9.99E+307,IF(B2:K2&gt;A2:J2=FALSE,1,\"\"))))-1,0)\n<\/code><\/pre>\n<p>and in <code>Cell M2<\/code><\/p>\n<pre><code>=IFERROR(COLUMN(K2)-COLUMN(INDEX(B2:K2,,MATCH(9.99E+307,IF(B2:K2&gt;=A2:J2=FALSE,1,\"\"))))-1,0)\n<\/code><\/pre>\n<p>Both formulas are array formula. Drag\/Copy down as required. See image for reference.<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/1664316287_493_Solved-how-to-count-increasing-profit-streak.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/1664316287_493_Solved-how-to-count-increasing-profit-streak.png\" alt=\"enter image description here\"><\/a><\/p>\n<p>Now when you select <code>Column K<\/code> and insert new column, formulas will change accordingly.<\/p>\n<p>Notice formula (formula bar) in the image below.<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/1664316287_543_Solved-how-to-count-increasing-profit-streak.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/1664316287_543_Solved-how-to-count-increasing-profit-streak.png\" alt=\"enter image description here\"><\/a><\/p>\n<hr>\n<p><strong><em>EDIT :<\/em><\/strong> Avoid counting streak of zeros <code>0-0-0-0<\/code><\/p>\n<p>For <code>Years of Steady Profits<\/code> use following formula in <code>Cell M2<\/code><\/p>\n<pre><code>=IFERROR(COLUMN(J2)-COLUMN(INDEX(B2:J2,,MATCH(9.99E+307,IF(((B2:J2&gt;=A2:I2)*(B2:J2&lt;&gt;0))=0,1,\"\")))),0)\n<\/code><\/pre>\n<p>This is an array formula.<\/p>\n<p><strong><em>VBA Solution :<\/em><\/strong><\/p>\n<pre><code>Option Explicit\n\nSub Demo()\n    Application.ScreenUpdating = False\n    Application.Calculation = xlCalculationManual\n\n    Dim lastRow As Long, lastCol As Long, rIndex As Long, cIndex As Long\n    Dim increaseCnt As Long, steadyCnt As Long\n    Dim ws As Worksheet\n    Dim isSteady As Boolean, isZero As Boolean\n\n    Set ws = ThisWorkbook.Worksheets(\"Sheet2\")  'change to your data sheet\n    With ws\n        lastRow = .Cells(.Rows.Count, \"A\").End(xlUp).Row    'last row with data using Column A\n        lastCol = .Cells(2, .Columns.Count).End(xlToLeft).Column 'last column with data using Row 2\n        increaseCnt = 0\n        steadyCnt = 0\n        isSteady = False\n\n        For rIndex = 2 To lastRow               'loop through row 2 to last row\n            For cIndex = lastCol To 2 Step -1   'loop through last column to column 2\n                If .Cells(rIndex, cIndex) &lt;&gt; \"NA\" Then  'check for NA\n                    If .Cells(rIndex, cIndex) &lt;&gt; 0 Then 'cheeck for 0\n                        If .Cells(rIndex, cIndex) = .Cells(rIndex, cIndex - 1) Then 'compare cells for steady count\n                            steadyCnt = steadyCnt + 1       'increment steadyCnt\n                            isSteady = True                 'set steady flag true\n                        ElseIf .Cells(rIndex, cIndex) &gt; .Cells(rIndex, cIndex - 1) Then 'compare cells for increase count\n                            If Not isSteady Then\n                                increaseCnt = increaseCnt + 1   'increment increaseCnt\n                                steadyCnt = steadyCnt + 1       'increment steadyCnt\n                            ElseIf .Cells(rIndex, cIndex) &lt;&gt; 0 Then 'check for cell is 0\n                                steadyCnt = steadyCnt + 1       'increment steadyCnt\n                            End If\n                        Else\n                            Exit For                'exit for loop\n                        End If\n                    Else\n                        Exit For                    'exit for loop\n                    End If\n                End If\n            Next cIndex\n            .Cells(rIndex, lastCol + 2) = increaseCnt   'display increaseCnt\n            .Cells(rIndex, lastCol + 3) = steadyCnt     'display steadyCnt\n            increaseCnt = 0\n            steadyCnt = 0\n            isSteady = False\n        Next rIndex\n    End With\n    Application.ScreenUpdating = True\n    Application.Calculation = xlCalculationAutomatic\nEnd Sub\n<\/code><\/pre>\n<p>See image for reference.<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/1664316287_828_Solved-how-to-count-increasing-profit-streak.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/1664316287_828_Solved-how-to-count-increasing-profit-streak.png\" alt=\"enter image description here\"><\/a><\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">8<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved how to count increasing profit streak? <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] To calculate Years of Increases enter the following formula in Cell L2 =IFERROR(COLUMN(J2)-COLUMN(INDEX(B2:J2,,MATCH(9.99E+307,IF(B2:J2&gt;A2:I2=FALSE,1,&#8221;&#8221;)))),0) and to calculate Years of Steady Profits enter below formula in Cell M2 =IFERROR(COLUMN(J2)-COLUMN(INDEX(B2:J2,,MATCH(9.99E+307,IF(B2:J2&gt;=A2:I2=FALSE,1,&#8221;&#8221;)))),0) Both the above formulas are array formula so commit by pressing Ctrl+Shift+Enter. Drag\/Copy down as required. See image for reference. In case you want this formula to &#8230; <a title=\"[Solved] how to count increasing profit streak?\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/\" aria-label=\"More on [Solved] how to count increasing profit streak?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[400,1612,1046,401],"class_list":["post-11641","post","type-post","status-publish","format-standard","hentry","category-solved","tag-excel","tag-excel-2010","tag-excel-formula","tag-vba"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Solved] how to count increasing profit streak? - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] how to count increasing profit streak? - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] To calculate Years of Increases enter the following formula in Cell L2 =IFERROR(COLUMN(J2)-COLUMN(INDEX(B2:J2,,MATCH(9.99E+307,IF(B2:J2&gt;A2:I2=FALSE,1,&quot;&quot;)))),0) and to calculate Years of Steady Profits enter below formula in Cell M2 =IFERROR(COLUMN(J2)-COLUMN(INDEX(B2:J2,,MATCH(9.99E+307,IF(B2:J2&gt;=A2:I2=FALSE,1,&quot;&quot;)))),0) Both the above formulas are array formula so commit by pressing Ctrl+Shift+Enter. Drag\/Copy down as required. See image for reference. In case you want this formula to ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-27T22:04:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-how-to-count-increasing-profit-streak.png\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] how to count increasing profit streak?\",\"datePublished\":\"2022-09-27T22:04:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/\"},\"wordCount\":152,\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/Solved-how-to-count-increasing-profit-streak.png\",\"keywords\":[\"excel\",\"excel-2010\",\"excel-formula\",\"vba\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/\",\"name\":\"[Solved] how to count increasing profit streak? - JassWeb\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/Solved-how-to-count-increasing-profit-streak.png\",\"datePublished\":\"2022-09-27T22:04:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/#primaryimage\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/Solved-how-to-count-increasing-profit-streak.png\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/Solved-how-to-count-increasing-profit-streak.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-count-increasing-profit-streak\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] how to count increasing profit streak?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\\\/\\\/jassweb.com\"],\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/author\\\/jaspritsinghghumangmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] how to count increasing profit streak? - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] how to count increasing profit streak? - JassWeb","og_description":"[ad_1] To calculate Years of Increases enter the following formula in Cell L2 =IFERROR(COLUMN(J2)-COLUMN(INDEX(B2:J2,,MATCH(9.99E+307,IF(B2:J2&gt;A2:I2=FALSE,1,\"\")))),0) and to calculate Years of Steady Profits enter below formula in Cell M2 =IFERROR(COLUMN(J2)-COLUMN(INDEX(B2:J2,,MATCH(9.99E+307,IF(B2:J2&gt;=A2:I2=FALSE,1,\"\")))),0) Both the above formulas are array formula so commit by pressing Ctrl+Shift+Enter. Drag\/Copy down as required. See image for reference. In case you want this formula to ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/","og_site_name":"JassWeb","article_published_time":"2022-09-27T22:04:47+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-how-to-count-increasing-profit-streak.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] how to count increasing profit streak?","datePublished":"2022-09-27T22:04:47+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/"},"wordCount":152,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-how-to-count-increasing-profit-streak.png","keywords":["excel","excel-2010","excel-formula","vba"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/","name":"[Solved] how to count increasing profit streak? - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-how-to-count-increasing-profit-streak.png","datePublished":"2022-09-27T22:04:47+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-how-to-count-increasing-profit-streak.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-how-to-count-increasing-profit-streak.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-count-increasing-profit-streak\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] how to count increasing profit streak?"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/11641","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=11641"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/11641\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=11641"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=11641"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=11641"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}