{"id":659,"date":"2019-03-23T20:29:15","date_gmt":"2019-03-23T20:29:15","guid":{"rendered":"http:\/\/www.vbastring.com\/blog\/?p=659"},"modified":"2019-03-26T16:28:16","modified_gmt":"2019-03-26T16:28:16","slug":"how-to-compare-cells-with-vba","status":"publish","type":"post","link":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/","title":{"rendered":"How To Compare Cells With VBA"},"content":{"rendered":"<p>Here is the scenario, the boss comes in to you, and wants you to add the new cities you all did business in last month to your master list. <\/p>\n<p>You are to send the new list to the marketing department, so you all can market to the new cities you did business in last month.   <\/p>\n<p>The &#8220;New List&#8221; has some new cities not in the &#8220;Master List&#8221;.  Your job is to add only the new entries to the &#8220;Master List&#8221;.<\/p>\n<p>Here&#8217;s what the list looks like:<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba-110x300.png?resize=110%2C300\" alt=\"\" width=\"110\" height=\"300\" class=\"aligncenter size-medium wp-image-661\" \/><\/a><\/p>\n<p>&#8220;How do I compare two columns in Excel?&#8221;<\/p>\n<p>Here&#8217;s a way how you do it with VBA.<\/p>\n<p>1. We are going to set the &#8220;Master List&#8221; as a named range.<\/p>\n<p>\t<a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba_names.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba_names-47x300.png?resize=47%2C300\" alt=\"\" width=\"47\" height=\"300\" class=\"aligncenter size-medium wp-image-662\" \/><\/a><\/p>\n<p>&#8212;>BTW, if you need to delete or edit your named range, you can use the &#8220;Formulas&#8221; > &#8220;Name Manager&#8221; to correct your error.<\/p>\n<p>\tFollow the following image:<\/p>\n<p>\t<a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba_names-manager.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba_names-manager-300x287.png?resize=300%2C287\" alt=\"\" width=\"300\" height=\"287\" class=\"aligncenter size-medium wp-image-663\" \/><\/a><\/p>\n<p>Here is the process:<\/p>\n<p>1\tSet cells A2:A37 into a named range<br \/>\n2\tSet up a user defined function which will take the value of the &#8220;New List&#8221; and check if the value in the &#8220;New List&#8221; is already in the &#8220;Master List&#8221;.<\/p>\n<p>How do you know if two cells match in Excel?<\/p>\n<p>This will identify the new cities and now we can filter them and add them to the &#8220;Master List&#8221;.<br \/>\n<a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba-new-items.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba-new-items-90x300.png?resize=90%2C300\" alt=\"\" width=\"90\" height=\"300\" class=\"aligncenter size-medium wp-image-665\" \/><\/a>\t<\/p>\n<p>Here&#8217;s the code:<\/p>\n<pre class=\"lang:vb decode:true \" >\r\n'by erik@loeblcomservices.com - 2019\r\n\r\nFunction GetNewEntries(Arg1) As Boolean\r\n    'Purpose: Find the new cities we did business in\r\n    \r\n    Dim cnn As Object\r\n    Dim rst As Object\r\n    Dim strSQL As String\r\n    Dim lngCount As Long\r\n    \r\n    Dim strValue As String\r\n    Dim blnNew As Boolean\r\n    \r\n    'Set up the connection to the Excel worksheet\r\n    Set cnn = CreateObject(\"ADODB.Connection\")\r\n    With cnn\r\n        .Provider = \"Microsoft.ACE.OLEDB.12.0\"\r\n        .ConnectionString = \"Data Source=\" &amp; ThisWorkbook.Path &amp; \"\\\" &amp; ThisWorkbook.Name &amp; \";\" &amp; _\r\n            \"Extended Properties=\"\"Excel 12.0 Xml;HDR=YES\"\";\"\r\n        .Open\r\n    End With\r\n    \r\n    \r\n    'In order to do queries with a WHERE clause, you need to name the range, otherwise use the worksheet name.\r\n\r\n    'get the new list cell value\r\n    strValue = Arg1\r\n    \r\n    'check if that value is already one we've done business in.\r\n    strSQL = \"SELECT * FROM [MasterList] WHERE [Master List] ='\" &amp; strValue &amp; \"'\"\r\n    Set rst = cnn.Execute(strSQL)\r\n    \r\n    If rst.EOF Then\r\n        'new item\r\n        blnNew = True\r\n    Else\r\n        'already in the Master List\r\n        blnNew = False\r\n    End If\r\n    \r\n\r\n    \r\n    rst.Close\r\n    cnn.Close\r\n    \r\n    Set rst = Nothing\r\n    Set cnn = Nothing\r\n    \r\n    GetNewEntries = blnNew\r\n    \r\nEnd Function<\/pre>\n<p>Watch how it&#8217;s done:<\/p>\n<p><iframe loading=\"lazy\" width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/tTSi5NMmmq4\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe><\/p>\n<p>Let me know if you have any questions.<\/p>\n<p>****************************************************<\/p>\n<table border=\"1\" width=\"100%\">\n<tr>\n<td align=\"middle\">\n<div class=\"AW-Form-1094354588\"><\/div>\n<p><script type=\"text\/javascript\">(function(d, s, id) {\n    var js, fjs = d.getElementsByTagName(s)[0];\n    if (d.getElementById(id)) return;\n    js = d.createElement(s); js.id = id;\n    js.src = \"\/\/forms.aweber.com\/form\/88\/1094354588.js\";\n    fjs.parentNode.insertBefore(js, fjs);\n    }(document, \"script\", \"aweber-wjs-kkrwj13ov\"));\n<\/script>\n<\/td>\n<\/tr>\n<\/table>\n<p><center><br \/>\n<a href=\"http:\/\/www.getyourboomback.com\/products\/amino-boosters#_l_2pn\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/leaddyno-client-images.s3.amazonaws.com\/cffa678c5db61bb2476a50e2198c69454765190c\/79c8cd6d7bcc3fb81771441a1a1aa70677e2c8b5_GYBB-580x394-boosters-01.jpg?ssl=1\" \/><\/a><\/center>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here is the scenario, the boss comes in to you, and wants you to add the new cities you all did business in last month to your master list. You are to send the new list to the marketing department, so you all can market to the new cities you did business in last month. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","om_disable_all_campaigns":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-659","post","type-post","status-publish","format-standard","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Compare Cells With VBA - My Blog<\/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:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Compare Cells With VBA - My Blog\" \/>\n<meta property=\"og:description\" content=\"Here is the scenario, the boss comes in to you, and wants you to add the new cities you all did business in last month to your master list. You are to send the new list to the marketing department, so you all can market to the new cities you did business in last month. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/\" \/>\n<meta property=\"og:site_name\" content=\"My Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-23T20:29:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-03-26T16:28:16+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba-110x300.png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"headline\":\"How To Compare Cells With VBA\",\"datePublished\":\"2019-03-23T20:29:15+00:00\",\"dateModified\":\"2019-03-26T16:28:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/\"},\"wordCount\":239,\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/compare-columns-with-vba-110x300.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/\",\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/\",\"name\":\"How To Compare Cells With VBA - My Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/compare-columns-with-vba-110x300.png\",\"datePublished\":\"2019-03-23T20:29:15+00:00\",\"dateModified\":\"2019-03-26T16:28:16+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/compare-columns-with-vba-110x300.png\",\"contentUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/compare-columns-with-vba-110x300.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/23\\\/how-to-compare-cells-with-vba\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Compare Cells With VBA\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/\",\"name\":\"My Blog\",\"description\":\"My WordPress Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/vbastring.com\\\/blog\"],\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Compare Cells With VBA - My Blog","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:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/","og_locale":"en_US","og_type":"article","og_title":"How To Compare Cells With VBA - My Blog","og_description":"Here is the scenario, the boss comes in to you, and wants you to add the new cities you all did business in last month to your master list. You are to send the new list to the marketing department, so you all can market to the new cities you did business in last month. [&hellip;]","og_url":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/","og_site_name":"My Blog","article_published_time":"2019-03-23T20:29:15+00:00","article_modified_time":"2019-03-26T16:28:16+00:00","og_image":[{"url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba-110x300.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/#article","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/"},"author":{"name":"admin","@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"headline":"How To Compare Cells With VBA","datePublished":"2019-03-23T20:29:15+00:00","dateModified":"2019-03-26T16:28:16+00:00","mainEntityOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/"},"wordCount":239,"image":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba-110x300.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/","url":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/","name":"How To Compare Cells With VBA - My Blog","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/#primaryimage"},"image":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba-110x300.png","datePublished":"2019-03-23T20:29:15+00:00","dateModified":"2019-03-26T16:28:16+00:00","author":{"@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"breadcrumb":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/#primaryimage","url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba-110x300.png","contentUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/compare-columns-with-vba-110x300.png"},{"@type":"BreadcrumbList","@id":"https:\/\/vbastring.com\/blog\/2019\/03\/23\/how-to-compare-cells-with-vba\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vbastring.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Compare Cells With VBA"}]},{"@type":"WebSite","@id":"https:\/\/vbastring.com\/blog\/#website","url":"https:\/\/vbastring.com\/blog\/","name":"My Blog","description":"My WordPress Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vbastring.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/vbastring.com\/blog"],"url":"https:\/\/vbastring.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/659","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/comments?post=659"}],"version-history":[{"count":5,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/659\/revisions"}],"predecessor-version":[{"id":672,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/659\/revisions\/672"}],"wp:attachment":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/media?parent=659"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/categories?post=659"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/tags?post=659"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}