{"id":106,"date":"2018-11-05T18:15:32","date_gmt":"2018-11-05T18:15:32","guid":{"rendered":"http:\/\/www.vbastring.com\/blog\/?p=106"},"modified":"2020-11-23T22:25:50","modified_gmt":"2020-11-23T22:25:50","slug":"vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence","status":"publish","type":"post","link":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/","title":{"rendered":"VBAString Tip 6: Input Box In Excel VBA To Add A Sequence"},"content":{"rendered":"<p>In this tip will use VBA To add a sequence of months to a worksheet with the input box<\/p>\n<p>First add the following code to a button called &#8220;Button1&#8243;&#8216;s click event: <\/p>\n<pre class=\"lang:vb decode:true \" >\r\nSub Button1_Click()\r\n   \r\n    Dim dteDate As Date\r\n    Dim dteNewDate As Date\r\n    Dim intColumn As Integer\r\n    \r\n    Dim intAnswer As Integer\r\n    \r\n    dteDate = InputBox(\"Enter start date\", \"Start Date\", Date)\r\n    \r\n    intAnswer = MsgBox(\"Is the start date '\" &amp; dteDate &amp; \"' you entered correct?\", vbQuestion + vbYesNo, \"Please Verify\")\r\n    \r\n    Select Case intAnswer\r\n        Case vbYes\r\n            'for the first date\r\n            dteNewDate = DateAdd(\"m\", 0, dteDate)\r\n            Cells(1, 1) = dteNewDate\r\n            \r\n            'for the 2nd to 10\r\n            For intColumn = 1 To 9\r\n                dteNewDate = DateAdd(\"m\", intColumn, dteDate)\r\n                Cells(1, intColumn + 1) = dteNewDate\r\n            Next\r\n        Case vbNo\r\n            MsgBox \"Try Operation Again\", vbExclamation, \"Cancel\"\r\n            \r\n            Exit Sub\r\n    End Select\r\n    \r\nEnd Sub\r\n<\/pre>\n<p>In the first image, I am using the VBA inputbox to accept a date entry:<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_1.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_1.png?resize=1281%2C301\" alt=\"excel_input_box_sequence_1\" width=\"1281\" height=\"301\" class=\"aligncenter size-full wp-image-109\" \/><\/a><\/p>\n<p>In the following image I am asking the user to confirm their date entry using the VBA msgbox :<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_2.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_2.png?resize=1196%2C433\" alt=\"excel_input_box_sequence_2\" width=\"1196\" height=\"433\" class=\"aligncenter size-full wp-image-110\" \/><\/a><\/p>\n<p>If the selection is positive, I am using the DateAdd function, to keep on adding a month according to my loop count.<\/p>\n<p>Also since I am writing to the columns of the worksheet in the first row, which are alpha characters instead of numeric (like the rows), I use &#8220;Cells()&#8221; which takes the column index instead of the alpha (A-XFD) name like &#8220;Range()&#8221;,as shown in the following image:<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_3.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_3.png?resize=926%2C277\" alt=\"excel_input_box_sequence_3\" width=\"926\" height=\"277\" class=\"aligncenter size-full wp-image-112\" \/><\/a><\/p>\n<p>Watch it in action:<\/p>\n<p><iframe loading=\"lazy\" width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/IjKQ8a7-2s4\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe><\/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<p>Let me know if you have any questions<\/p>\n<p>[simple_contact_form]\t<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tip will use VBA To add a sequence of months to a worksheet with the input box First add the following code to a button called &#8220;Button1&#8243;&#8216;s click event: Sub Button1_Click() Dim dteDate As Date Dim dteNewDate As Date Dim intColumn As Integer Dim intAnswer As Integer dteDate = InputBox(&#8220;Enter start date&#8221;, &#8220;Start [&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-106","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>VBAString Tip 6: Input Box In Excel VBA To Add A Sequence - 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\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"VBAString Tip 6: Input Box In Excel VBA To Add A Sequence - My Blog\" \/>\n<meta property=\"og:description\" content=\"In this tip will use VBA To add a sequence of months to a worksheet with the input box First add the following code to a button called &#8220;Button1&#8243;&#8216;s click event: Sub Button1_Click() Dim dteDate As Date Dim dteNewDate As Date Dim intColumn As Integer Dim intAnswer As Integer dteDate = InputBox(&quot;Enter start date&quot;, &quot;Start [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/\" \/>\n<meta property=\"og:site_name\" content=\"My Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-11-05T18:15:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-23T22:25:50+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_1.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\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"headline\":\"VBAString Tip 6: Input Box In Excel VBA To Add A Sequence\",\"datePublished\":\"2018-11-05T18:15:32+00:00\",\"dateModified\":\"2020-11-23T22:25:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/\"},\"wordCount\":161,\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/excel_input_box_sequence_1.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/\",\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/\",\"name\":\"VBAString Tip 6: Input Box In Excel VBA To Add A Sequence - My Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/excel_input_box_sequence_1.png\",\"datePublished\":\"2018-11-05T18:15:32+00:00\",\"dateModified\":\"2020-11-23T22:25:50+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/excel_input_box_sequence_1.png\",\"contentUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/excel_input_box_sequence_1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/11\\\/05\\\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"VBAString Tip 6: Input Box In Excel VBA To Add A Sequence\"}]},{\"@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":"VBAString Tip 6: Input Box In Excel VBA To Add A Sequence - 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\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/","og_locale":"en_US","og_type":"article","og_title":"VBAString Tip 6: Input Box In Excel VBA To Add A Sequence - My Blog","og_description":"In this tip will use VBA To add a sequence of months to a worksheet with the input box First add the following code to a button called &#8220;Button1&#8243;&#8216;s click event: Sub Button1_Click() Dim dteDate As Date Dim dteNewDate As Date Dim intColumn As Integer Dim intAnswer As Integer dteDate = InputBox(\"Enter start date\", \"Start [&hellip;]","og_url":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/","og_site_name":"My Blog","article_published_time":"2018-11-05T18:15:32+00:00","article_modified_time":"2020-11-23T22:25:50+00:00","og_image":[{"url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_1.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\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/#article","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/"},"author":{"name":"admin","@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"headline":"VBAString Tip 6: Input Box In Excel VBA To Add A Sequence","datePublished":"2018-11-05T18:15:32+00:00","dateModified":"2020-11-23T22:25:50+00:00","mainEntityOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/"},"wordCount":161,"image":{"@id":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_1.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/","url":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/","name":"VBAString Tip 6: Input Box In Excel VBA To Add A Sequence - My Blog","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/#primaryimage"},"image":{"@id":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_1.png","datePublished":"2018-11-05T18:15:32+00:00","dateModified":"2020-11-23T22:25:50+00:00","author":{"@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"breadcrumb":{"@id":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/#primaryimage","url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_1.png","contentUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/11\/excel_input_box_sequence_1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/vbastring.com\/blog\/2018\/11\/05\/vbastring-tip-6-input-box-in-excel-vba-to-add-a-sequence\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vbastring.com\/blog\/"},{"@type":"ListItem","position":2,"name":"VBAString Tip 6: Input Box In Excel VBA To Add A Sequence"}]},{"@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\/106","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=106"}],"version-history":[{"count":5,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/106\/revisions"}],"predecessor-version":[{"id":519,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/106\/revisions\/519"}],"wp:attachment":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/media?parent=106"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/categories?post=106"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/tags?post=106"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}