{"id":33815,"date":"2023-02-14T09:46:48","date_gmt":"2023-02-14T04:16:48","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/"},"modified":"2023-02-14T09:46:48","modified_gmt":"2023-02-14T04:16:48","slug":"solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/","title":{"rendered":"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-72985738\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"72985738\" data-parentid=\"34459004\" data-score=\"2\" data-position-on-page=\"3\" data-highest-scored=\"0\" data-question-has-accepted-highest-score=\"0\" itemprop=\"suggestedAnswer\" 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>Your setup as best I could understand it:<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png\" alt=\"Excel_In1.xls\"><\/a><\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/1676348208_157_Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/1676348208_157_Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png\" alt=\"Excel_In2.xls\"><\/a><\/p>\n<p>And&#8230; This is the code I wrote:<\/p>\n<pre><code>Option Explicit\nOption Base 1\nSub CopyData()\n    \n    Dim XLout As Workbook   'Excel_Out.xls\n    Dim XLin1 As Workbook   'Excel_In1.xls\n    Dim XLin2 As Workbook   'Excel_In2.xls\n    Dim ProductList         'Product\/Company List from XLin1\n    Dim ProductListO()      'Concatenated Version of above\n    Dim DataList            'Product\/Company List from XLin2\n    Dim DataXcol            'Extra Data to pull from Column X in XLin2\n    Dim DataZcol            'Extra Data to pull from Column Z in XLin2\n    Dim Output()            'Output Array for XLout\n    Dim i As Long           'Iterations\n    Dim counter As Long     'Item number\n    Dim TimeCount\n    \n    TimeCount = Timer\n    \n        ' &gt;&gt;&gt; All Workbooks\n    Set XLout = ThisWorkbook\n    Set XLin1 = Workbooks.Open(\"C:\\Users\\ccritchlow\\Documents\\A\\Test\\Excel_In1.xls\")\n    Set XLin2 = Workbooks.Open(\"C:\\Users\\ccritchlow\\Documents\\A\\Test\\Excel_In2.xls\")\n        \n        ' &gt;&gt;&gt; Store Source Data in Arrays\n    With XLin2.Sheets(1)\n        DataList = .Range(\"A2:B\" &amp; .Range(\"A\" &amp; Rows.Count).End(xlUp).Row)\n        DataXcol = .Range(\"X2:X\" &amp; .Range(\"A\" &amp; Rows.Count).End(xlUp).Row)\n        DataZcol = .Range(\"Z2:Z\" &amp; .Range(\"A\" &amp; Rows.Count).End(xlUp).Row)\n    End With\n    \n        ' &gt;&gt;&gt; Store Product List Data in Arrays\n    ProductList = XLin1.Sheets(1).Range(\"L2:M\" &amp; XLin1.Sheets(1).Range(\"M\" &amp; Rows.Count).End(xlUp).Row)\n    ReDim ProductListO(1 To UBound(ProductList, 1))\n    For i = 1 To UBound(ProductList, 1)\n        ProductListO(i) = ProductList(i, 1) &amp; \"-\" &amp; ProductList(i, 2)\n    Next i\n    \n        ' &gt;&gt;&gt; Move entries from XLin2 (that exist on XLin1) into \"Output\" Array\n    ReDim Preserve Output(UBound(DataList, 1), 3)\n    counter = 1\n    For i = 1 To UBound(DataList, 1)\n        DataList(i, 1) = DataList(i, 1) &amp; \"-\" &amp; DataList(i, 2)\n        If Not IsError(Application.Match(DataList(i, 1), ProductListO(), 0)) Then\n            Debug.Print\n            Output(counter, 1) = DataList(i, 2)\n            Output(counter, 2) = DataXcol(i, 1)\n            Output(counter, 3) = DataZcol(i, 1)\n            counter = counter + 1\n        End If\n    Next i\n    \n        ' &gt;&gt;&gt; Output to XLout\n    XLout.Sheets(1).Range(\"A2\").Resize(UBound(Output, 1), 3) = Output()\n\n    Application.StatusBar = \"Total Time to review \" &amp; UBound(DataList, 1) &amp; \" lines = \" &amp; Timer - TimeCount\n\nEnd Sub\n<\/code><\/pre>\n<p>It does the following<\/p>\n<ul>\n<li>Is stored on &#8220;Excel_Out.xls&#8221;<\/li>\n<li>Opens both &#8220;Excel_In#.xls&#8221; workbooks<\/li>\n<li>Stores all required data in arrays<\/li>\n<li>Identifies data on XLin2 whose &#8220;company&amp;productname&#8221; exist on XLin1<\/li>\n<li>Outputs that data to &#8220;Excel_Out.xls&#8221;<\/li>\n<\/ul>\n<p>This is how it looks:<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/1676348208_69_Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/1676348208_69_Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.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\">5<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Handling pairs of pattern matching in multiple excel files through VB macros <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Your setup as best I could understand it: And&#8230; This is the code I wrote: Option Explicit Option Base 1 Sub CopyData() Dim XLout As Workbook &#8216;Excel_Out.xls Dim XLin1 As Workbook &#8216;Excel_In1.xls Dim XLin2 As Workbook &#8216;Excel_In2.xls Dim ProductList &#8216;Product\/Company List from XLin1 Dim ProductListO() &#8216;Concatenated Version of above Dim DataList &#8216;Product\/Company List from &#8230; <a title=\"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/\" aria-label=\"More on [Solved] Handling pairs of pattern matching in multiple excel files through VB macros\">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,401],"class_list":["post-33815","post","type-post","status-publish","format-standard","hentry","category-solved","tag-excel","tag-vba"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Handling pairs of pattern matching in multiple excel files through VB macros - 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-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Your setup as best I could understand it: And&#8230; This is the code I wrote: Option Explicit Option Base 1 Sub CopyData() Dim XLout As Workbook &#039;Excel_Out.xls Dim XLin1 As Workbook &#039;Excel_In1.xls Dim XLin2 As Workbook &#039;Excel_In2.xls Dim ProductList &#039;Product\/Company List from XLin1 Dim ProductListO() &#039;Concatenated Version of above Dim DataList &#039;Product\/Company List from ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-14T04:16:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.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-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros\",\"datePublished\":\"2023-02-14T04:16:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/\"},\"wordCount\":88,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png\",\"keywords\":[\"excel\",\"vba\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/\",\"name\":\"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png\",\"datePublished\":\"2023-02-14T04:16:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros\"}]},{\"@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=1775193939\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros - 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-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros - JassWeb","og_description":"[ad_1] Your setup as best I could understand it: And&#8230; This is the code I wrote: Option Explicit Option Base 1 Sub CopyData() Dim XLout As Workbook 'Excel_Out.xls Dim XLin1 As Workbook 'Excel_In1.xls Dim XLin2 As Workbook 'Excel_In2.xls Dim ProductList 'Product\/Company List from XLin1 Dim ProductListO() 'Concatenated Version of above Dim DataList 'Product\/Company List from ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/","og_site_name":"JassWeb","article_published_time":"2023-02-14T04:16:48+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.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-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros","datePublished":"2023-02-14T04:16:48+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/"},"wordCount":88,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png","keywords":["excel","vba"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/","url":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/","name":"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png","datePublished":"2023-02-14T04:16:48+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Handling-pairs-of-pattern-matching-in-multiple-excel-files.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-handling-pairs-of-pattern-matching-in-multiple-excel-files-through-vb-macros\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Handling pairs of pattern matching in multiple excel files through VB macros"}]},{"@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=1775193939","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","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\/33815","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=33815"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/33815\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=33815"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=33815"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=33815"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}