{"id":616,"date":"2019-03-15T17:20:11","date_gmt":"2019-03-15T17:20:11","guid":{"rendered":"http:\/\/www.vbastring.com\/blog\/?p=616"},"modified":"2020-11-23T20:57:25","modified_gmt":"2020-11-23T20:57:25","slug":"how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally","status":"publish","type":"post","link":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/","title":{"rendered":"How To Use Excel VBA To Loop Through A Range And Copy Conditionally"},"content":{"rendered":"<p>In this post, we will loop a list of bank account transactions, and copy them programmatically to another sheet based on their date.<\/p>\n<p>Here is an image of the sheet:<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/for-loop-copy-b.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/for-loop-copy-b-300x211.png?resize=300%2C211\" alt=\"\" width=\"300\" height=\"211\" class=\"aligncenter size-medium wp-image-621\" \/><\/a><\/p>\n<p>In the account ledger, we are going to loop the rows in the &#8220;Full Bank Statement&#8221; sheet, and extract only the rows that fall within the dates shown in &#8220;M2&#8221; and &#8220;N2&#8221;.  <\/p>\n<p>If the row data does fall within those date parameters, we will copy and paste the row data into the &#8220;July&#8221; sheet.<\/p>\n<p>Here is the code:<\/p>\n<pre class=\"lang:vb decode:true \" >Sub Button1_Click()\r\n    '2019 - http:\/\/vbastring.com\r\n    \r\n    ProcessCells\r\n    \r\n    MsgBox \"Complete\"\r\n    \r\n    \r\nEnd Sub\r\n\r\n\r\nSub ProcessCells()\r\n    '2019 - http:\/\/vbastring.com\r\n    \r\n    Dim intLastRow As Integer\r\n    Dim intRow As Integer\r\n    \r\n    Dim dteStart As Date\r\n    Dim dteEnd As Date\r\n    \r\n    Dim dteToEvaluate As Date\r\n    \r\n    dteStart = Sheets(\"Full Bank Statement\").Range(\"M2\")\r\n    dteEnd = Sheets(\"Full Bank Statement\").Range(\"N2\")\r\n    \r\n    Dim intDestRow As Integer\r\n    \r\n    intDestRow = 2\r\n    intLastRow = 14000\r\n    \r\n    \r\n    For intRow = 2 To intLastRow\r\n        dteToEvaluate = Sheets(\"Full Bank Statement\").Range(\"A\" &amp; intRow)\r\n        \r\n        If dteToEvaluate &gt;= dteStart And dteToEvaluate &lt;= dteEnd Then\r\n            \r\n            'copy it\r\n        \r\n            Sheets(\"Full Bank Statement\").Range(Sheets(\"Full Bank Statement\").Cells(intRow, 1), Sheets(\"Full Bank Statement\").Cells(intRow, 10)).Copy\r\n            \r\n            Sheets(\"July\").Select\r\n            Sheets(\"July\").Range(\"A\" &amp; intDestRow).Select\r\n            Sheets(\"July\").Paste\r\n            \r\n            intDestRow = intDestRow + 1\r\n            \r\n        End If\r\n        \r\n    Next\r\n    \r\n    'set the focus back to the original sheet\r\n    \r\n    Sheets(\"Full Bank Statement\").Select\r\nEnd Sub\r\n<\/pre>\n<p>After all the processing is complete, your &#8220;July&#8221; sheet should look like this:<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/for-loop-copy-2.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/for-loop-copy-2-244x300.png?resize=244%2C300\" alt=\"\" width=\"244\" height=\"300\" class=\"aligncenter size-medium wp-image-625\" \/><\/a><\/p>\n<p><strong>You can download a &#8220;look alike&#8221; file here (The file looks different but does the same thing):<\/strong><\/p>\n<p><a href=\"https:\/\/ms-excel-files.s3.amazonaws.com\/Excel+VBA+To+Loop+Through+A+Range+And+Copy+Conditionally.xlsm\" rel=\"noopener noreferrer\" target=\"_blank\">Excel VBA To Loop Through A Range And Copy Conditionally.xlsm<\/a><\/p>\n<p>Watch how it&#8217;s done:<\/p>\n<p><iframe loading=\"lazy\" width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/dLsnR8FXsgg\" 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","protected":false},"excerpt":{"rendered":"<p>In this post, we will loop a list of bank account transactions, and copy them programmatically to another sheet based on their date. Here is an image of the sheet: In the account ledger, we are going to loop the rows in the &#8220;Full Bank Statement&#8221; sheet, and extract only the rows that fall within [&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-616","post","type-post","status-publish","format-standard","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Use Excel VBA To Loop Through A Range And Copy Conditionally - 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\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Use Excel VBA To Loop Through A Range And Copy Conditionally - My Blog\" \/>\n<meta property=\"og:description\" content=\"In this post, we will loop a list of bank account transactions, and copy them programmatically to another sheet based on their date. Here is an image of the sheet: In the account ledger, we are going to loop the rows in the &#8220;Full Bank Statement&#8221; sheet, and extract only the rows that fall within [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/\" \/>\n<meta property=\"og:site_name\" content=\"My Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-15T17:20:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-23T20:57:25+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/for-loop-copy-b-300x211.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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"headline\":\"How To Use Excel VBA To Loop Through A Range And Copy Conditionally\",\"datePublished\":\"2019-03-15T17:20:11+00:00\",\"dateModified\":\"2020-11-23T20:57:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/\"},\"wordCount\":155,\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/for-loop-copy-b-300x211.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/\",\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/\",\"name\":\"How To Use Excel VBA To Loop Through A Range And Copy Conditionally - My Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/for-loop-copy-b-300x211.png\",\"datePublished\":\"2019-03-15T17:20:11+00:00\",\"dateModified\":\"2020-11-23T20:57:25+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/for-loop-copy-b-300x211.png\",\"contentUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/for-loop-copy-b-300x211.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/03\\\/15\\\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Use Excel VBA To Loop Through A Range And Copy Conditionally\"}]},{\"@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 Use Excel VBA To Loop Through A Range And Copy Conditionally - 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\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/","og_locale":"en_US","og_type":"article","og_title":"How To Use Excel VBA To Loop Through A Range And Copy Conditionally - My Blog","og_description":"In this post, we will loop a list of bank account transactions, and copy them programmatically to another sheet based on their date. Here is an image of the sheet: In the account ledger, we are going to loop the rows in the &#8220;Full Bank Statement&#8221; sheet, and extract only the rows that fall within [&hellip;]","og_url":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/","og_site_name":"My Blog","article_published_time":"2019-03-15T17:20:11+00:00","article_modified_time":"2020-11-23T20:57:25+00:00","og_image":[{"url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/for-loop-copy-b-300x211.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/#article","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/"},"author":{"name":"admin","@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"headline":"How To Use Excel VBA To Loop Through A Range And Copy Conditionally","datePublished":"2019-03-15T17:20:11+00:00","dateModified":"2020-11-23T20:57:25+00:00","mainEntityOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/"},"wordCount":155,"image":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/for-loop-copy-b-300x211.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/","url":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/","name":"How To Use Excel VBA To Loop Through A Range And Copy Conditionally - My Blog","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/#primaryimage"},"image":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/for-loop-copy-b-300x211.png","datePublished":"2019-03-15T17:20:11+00:00","dateModified":"2020-11-23T20:57:25+00:00","author":{"@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"breadcrumb":{"@id":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/#primaryimage","url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/for-loop-copy-b-300x211.png","contentUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/03\/for-loop-copy-b-300x211.png"},{"@type":"BreadcrumbList","@id":"https:\/\/vbastring.com\/blog\/2019\/03\/15\/how-to-use-excel-vba-to-loop-through-a-range-and-copy-conditionally\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vbastring.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Use Excel VBA To Loop Through A Range And Copy Conditionally"}]},{"@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\/616","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=616"}],"version-history":[{"count":5,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/616\/revisions"}],"predecessor-version":[{"id":830,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/616\/revisions\/830"}],"wp:attachment":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/media?parent=616"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/categories?post=616"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/tags?post=616"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}