{"id":34185,"date":"2023-03-02T16:41:35","date_gmt":"2023-03-02T11:11:35","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/"},"modified":"2023-03-02T16:41:35","modified_gmt":"2023-03-02T11:11:35","slug":"solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/","title":{"rendered":"[Solved] Merging Rows of column B with the count of already merged rows A"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-37735720\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"37735720\" data-parentid=\"37732289\" data-score=\"0\" 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<ol>\n<li>Merging cells in a spreadsheet means taking two or more cells and<br \/>\nconstructing a single cell out of them. When you merge two or more<br \/>\nadjacent horizontal or vertical cells, the cells become one larger<br \/>\ncell that is displayed across multiple columns or rows. When you<br \/>\nmerge multiple cells, the contents of only one cell (the upper-left<br \/>\ncell for left-to-right languages, or the upper-right cell for<br \/>\nright-to-left languages) appear in the merged cell. The contents of<br \/>\nthe other cells that you merge are deleted. For more details please<br \/>\ngo through this MSDN article <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/support.office.com\/en-us\/article\/Merge-and-unmerge-cells-f7850c71-8663-429a-9316-aa09fc161eaf\">Merge and unmerge<br \/>\ncells<\/a><\/li>\n<\/ol>\n<p>Simple VBA code for Merging Cell<\/p>\n<pre><code>Sub merg_exp_1()\n    ActiveSheet.Range(\"A1:C10\").Merge\nEnd Sub\n<\/code><\/pre>\n<p>Sample data before and after running the program is shown.<br \/>\n    <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png\" alt=\"Exhibit-1\"><\/a><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/1677755494_284_Solved-Merging-Rows-of-column-B-with-the-count-of.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/1677755494_284_Solved-Merging-Rows-of-column-B-with-the-count-of.png\" alt=\"Exhibit-2\"><\/a><\/p>\n<ol start=\"2\">\n<li>\n<p>Now let us see, If we merge a row what happens. Sample code for this<br \/>\nexercise though general is being tested for one situation only and<br \/>\nit as follow :<\/p>\n<pre><code>Sub Merge_Rows()\n    Dim rng As Range\n    Dim rrow As Range\n    Dim rCL As Range\n    Dim out As String\n    Dim dlmt As String\n    dlmt = \",\"\n    Set rng = ActiveSheet.Range(\"A1:C5\")\n    For Each rrow In rng.Rows\n    out = \"\"\n    For Each rCL In rrow.Cells\n        If rCL.Value &lt;&gt; \"\" Then\n            out = out &amp; rCL.Value &amp; dlmt\n        End If\n    Next rCL\n    Application.DisplayAlerts = False\n    rrow.Merge\n    Application.DisplayAlerts = True\n    If Len(rrow.Cells(1).Value) &gt; 0 Then\n        rrow.Cells(1).Value = Left(out, Len(out) - 1)\n    End If\n    Next rrow\nEnd Sub\n<\/code><\/pre>\n<\/li>\n<\/ol>\n<p>Sample data before and after running the program is shown. You can see this won&#8217;t meet your objective.   <\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/1677755494_519_Solved-Merging-Rows-of-column-B-with-the-count-of.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/1677755494_519_Solved-Merging-Rows-of-column-B-with-the-count-of.png\" alt=\"Snapshot-3\"><\/a><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/1677755494_444_Solved-Merging-Rows-of-column-B-with-the-count-of.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/1677755494_444_Solved-Merging-Rows-of-column-B-with-the-count-of.png\" alt=\"Snapshot-4\"><\/a><\/p>\n<ol start=\"3\">\n<li>\n<p>Next we can try merging by column approach. Here also we are trying<br \/>\nfor one column i.e. Column B to see the effect. Sample code as<br \/>\nfollows.<\/p>\n<pre><code>Sub Merge_col_exp()\n\n    Dim cnum As Integer\n    Dim rng As Range\n    Dim str As String\n\n    For i = ActiveSheet.UsedRange.Rows.Count To 1 Step -1\n    cnum = Cells(i, 1).MergeArea.Count\n    Set rng = Range(Cells(i, 2), Cells(i - cnum + 1, 2)) ' only to demonstrate working in 2nd column\n\n    For Each cl In rng\n    If Not IsEmpty(cl) Then str = str + \",\" + cl\n    Next\n    If str &lt;&gt; \"\" Then str = Right(str, Len(str) - 1)\n\n    Application.DisplayAlerts = False\n    rng.Merge\n    rng = str\n    Application.DisplayAlerts = True\n\n    str = \"\"\n    i = i - cnum + 1\n    Next i\n\nEnd Sub\n<\/code><\/pre>\n<\/li>\n<\/ol>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/1677755495_556_Solved-Merging-Rows-of-column-B-with-the-count-of.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/1677755495_556_Solved-Merging-Rows-of-column-B-with-the-count-of.png\" alt=\"Snapshot-5\"><\/a><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/1677755495_858_Solved-Merging-Rows-of-column-B-with-the-count-of.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/1677755495_858_Solved-Merging-Rows-of-column-B-with-the-count-of.png\" alt=\"Snapshot-6\"><\/a><br \/>\nSample data before and after running the program is shown. You can see this is closer to your requirement. You can extend functionality of this program by finding Last Column in the Actively used range. Extend program functionality to cover upto last column.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">2<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Merging Rows of column B with the count of already merged rows A <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Merging cells in a spreadsheet means taking two or more cells and constructing a single cell out of them. When you merge two or more adjacent horizontal or vertical cells, the cells become one larger cell that is displayed across multiple columns or rows. When you merge multiple cells, the contents of only one &#8230; <a title=\"[Solved] Merging Rows of column B with the count of already merged rows A\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/\" aria-label=\"More on [Solved] Merging Rows of column B with the count of already merged rows A\">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,460,401],"class_list":["post-34185","post","type-post","status-publish","format-standard","hentry","category-solved","tag-excel","tag-merge","tag-vba"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Merging Rows of column B with the count of already merged rows A - 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-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Merging Rows of column B with the count of already merged rows A - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Merging cells in a spreadsheet means taking two or more cells and constructing a single cell out of them. When you merge two or more adjacent horizontal or vertical cells, the cells become one larger cell that is displayed across multiple columns or rows. When you merge multiple cells, the contents of only one ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-02T11:11:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Merging Rows of column B with the count of already merged rows A\",\"datePublished\":\"2023-03-02T11:11:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/\"},\"wordCount\":262,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png\",\"keywords\":[\"excel\",\"merge\",\"vba\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/\",\"name\":\"[Solved] Merging Rows of column B with the count of already merged rows A - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png\",\"datePublished\":\"2023-03-02T11:11:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Merging Rows of column B with the count of already merged rows A\"}]},{\"@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\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Merging Rows of column B with the count of already merged rows A - 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-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Merging Rows of column B with the count of already merged rows A - JassWeb","og_description":"[ad_1] Merging cells in a spreadsheet means taking two or more cells and constructing a single cell out of them. When you merge two or more adjacent horizontal or vertical cells, the cells become one larger cell that is displayed across multiple columns or rows. When you merge multiple cells, the contents of only one ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/","og_site_name":"JassWeb","article_published_time":"2023-03-02T11:11:35+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Merging Rows of column B with the count of already merged rows A","datePublished":"2023-03-02T11:11:35+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/"},"wordCount":262,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png","keywords":["excel","merge","vba"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/","url":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/","name":"[Solved] Merging Rows of column B with the count of already merged rows A - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png","datePublished":"2023-03-02T11:11:35+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/03\/Solved-Merging-Rows-of-column-B-with-the-count-of.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-merging-rows-of-column-b-with-the-count-of-already-merged-rows-a\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Merging Rows of column B with the count of already merged rows A"}]},{"@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\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","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\/34185","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=34185"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/34185\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=34185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=34185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=34185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}