{"id":434,"date":"2019-02-03T03:36:29","date_gmt":"2019-02-03T03:36:29","guid":{"rendered":"http:\/\/www.vbastring.com\/blog\/?p=434"},"modified":"2019-02-09T03:57:11","modified_gmt":"2019-02-09T03:57:11","slug":"how-to-hide-and-unhide-sheets-in-excel-with-vba","status":"publish","type":"post","link":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/","title":{"rendered":"How To Hide And Unhide Sheets In Excel With VBA"},"content":{"rendered":"<p>In this post I&#8217;m going to show you how to hide and unhide sheets in excel with vba.  We are also going to load<br \/>\nthe data from the active sheet into the text boxes of the UserForm.<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets.png?resize=748%2C338\" alt=\"\" width=\"748\" height=\"338\" class=\"alignleft size-full wp-image-436\" \/><\/a><\/p>\n<p>Essentially, we have 5 worksheets with the same layout.  It&#8217;s just that each patient has their own spreadsheet.<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets2.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets2.png?resize=443%2C311\" alt=\"\" width=\"443\" height=\"311\" class=\"alignleft size-full wp-image-437\" \/><\/a><\/p>\n<p>Then we will load all of the data on the selected worksheet into the text boxes.  The UserForm is launched in the previous image.<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets3.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets3.png?resize=967%2C438\" alt=\"\" width=\"967\" height=\"438\" class=\"alignleft size-full wp-image-439\" \/><\/a><\/p>\n<p>Here is the code to load all the worksheets:<\/p>\n<pre class=\"lang:vb decode:true \" >\r\nPrivate Sub UserForm_Initialize()\r\n    LoadBoxes\r\n    \r\nEnd Sub\r\n\r\n\r\nSub LoadBoxes()\r\n    Dim intCounter As Integer\r\n    \r\n    'load the combo with the sheet names\r\n    With Me.cboWorsheets\r\n        For intCounter = 1 To ActiveWorkbook.Sheets.Count\r\n            .AddItem ActiveWorkbook.Sheets(intCounter).Name\r\n        Next intCounter\r\n    End With\r\n    \r\nEnd Sub<\/pre>\n<p>When a worksheet is selected in the combobox, and &#8220;Go&#8221; is clicked, the textboxes are filled in, and the other sheets are hidden (take a look at the code)<\/p>\n<pre class=\"lang:vb decode:true \" >Private Sub btnGo_Click()\r\n    Dim strSheetName As String\r\n    \r\n    strSheetName = Me.cboWorsheets.Value\r\n    \r\n    'show all the worksheets first\r\n    For intCounter = 1 To ActiveWorkbook.Sheets.Count\r\n            ActiveWorkbook.Sheets(intCounter).Visible = True\r\n    Next intCounter\r\n    \r\n    'Hide the worksheets not selected in the combo\r\n    For intCounter = 1 To ActiveWorkbook.Sheets.Count\r\n        If ActiveWorkbook.Sheets(intCounter).Name &lt;&gt; strSheetName Then\r\n            ActiveWorkbook.Sheets(intCounter).Visible = False\r\n        End If\r\n    Next intCounter\r\n    \r\n    'Load the values in the textboxes\r\n    Me.txtName = ActiveWorkbook.Sheets(strSheetName).Range(\"B1\")\r\n    Me.txtAddress = ActiveWorkbook.Sheets(strSheetName).Range(\"B2\")\r\n    Me.txtPmt1 = ActiveWorkbook.Sheets(strSheetName).Range(\"B3\")\r\n    Me.txtPmt1Date = ActiveWorkbook.Sheets(strSheetName).Range(\"B4\")\r\n    Me.txtPmt2 = ActiveWorkbook.Sheets(strSheetName).Range(\"B5\")\r\n    Me.txtPmt2Date = ActiveWorkbook.Sheets(strSheetName).Range(\"B6\")\r\n    \r\n    'show the \"Start\" worksheet always\r\n    For intCounter = 1 To ActiveWorkbook.Sheets.Count\r\n        If ActiveWorkbook.Sheets(intCounter).Name = \"Start\" Then\r\n            ActiveWorkbook.Sheets(intCounter).Visible = True\r\n        End If\r\n    Next intCounter\r\nEnd Sub<\/pre>\n<p>This is what happens when &#8220;Ana Trujillo&#8221; is selected:<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets4.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets4.png?resize=984%2C668\" alt=\"\" width=\"984\" height=\"668\" class=\"alignleft size-full wp-image-443\" \/><\/a><\/p>\n<p>Let me know if you have any questions.<\/p>\n<p>Use this form to send me a message:<\/p>\n<p>[simple_contact_form]<\/p>\n<p><a href=\"http:\/\/www.getyourboomback.com\/#_l_2pn\"><img data-recalc-dims=\"1\" height=\"580\" width=\"580\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/leaddyno-client-images.s3.amazonaws.com\/cffa678c5db61bb2476a50e2198c69454765190c\/6bc94a38828c6e5e788052b1673c62aecb0d487b_aminoboosters-YTE-square-2bottles-580x580.png?resize=580%2C580&#038;ssl=1\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this post I&#8217;m going to show you how to hide and unhide sheets in excel with vba. We are also going to load the data from the active sheet into the text boxes of the UserForm. Essentially, we have 5 worksheets with the same layout. It&#8217;s just that each patient has their own spreadsheet. [&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-434","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 Hide And Unhide Sheets In Excel 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\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-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 Hide And Unhide Sheets In Excel With VBA - My Blog\" \/>\n<meta property=\"og:description\" content=\"In this post I&#8217;m going to show you how to hide and unhide sheets in excel with vba. We are also going to load the data from the active sheet into the text boxes of the UserForm. Essentially, we have 5 worksheets with the same layout. It&#8217;s just that each patient has their own spreadsheet. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/\" \/>\n<meta property=\"og:site_name\" content=\"My Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-03T03:36:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-02-09T03:57:11+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets.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\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"headline\":\"How To Hide And Unhide Sheets In Excel With VBA\",\"datePublished\":\"2019-02-03T03:36:29+00:00\",\"dateModified\":\"2019-02-09T03:57:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/\"},\"wordCount\":156,\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/Excel-vba-hide-multiple-sheets.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/\",\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/\",\"name\":\"How To Hide And Unhide Sheets In Excel With VBA - My Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/Excel-vba-hide-multiple-sheets.png\",\"datePublished\":\"2019-02-03T03:36:29+00:00\",\"dateModified\":\"2019-02-09T03:57:11+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/Excel-vba-hide-multiple-sheets.png\",\"contentUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/Excel-vba-hide-multiple-sheets.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/03\\\/how-to-hide-and-unhide-sheets-in-excel-with-vba\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Hide And Unhide Sheets In Excel 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 Hide And Unhide Sheets In Excel 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\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/","og_locale":"en_US","og_type":"article","og_title":"How To Hide And Unhide Sheets In Excel With VBA - My Blog","og_description":"In this post I&#8217;m going to show you how to hide and unhide sheets in excel with vba. We are also going to load the data from the active sheet into the text boxes of the UserForm. Essentially, we have 5 worksheets with the same layout. It&#8217;s just that each patient has their own spreadsheet. [&hellip;]","og_url":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/","og_site_name":"My Blog","article_published_time":"2019-02-03T03:36:29+00:00","article_modified_time":"2019-02-09T03:57:11+00:00","og_image":[{"url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets.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\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/#article","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/"},"author":{"name":"admin","@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"headline":"How To Hide And Unhide Sheets In Excel With VBA","datePublished":"2019-02-03T03:36:29+00:00","dateModified":"2019-02-09T03:57:11+00:00","mainEntityOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/"},"wordCount":156,"image":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/","url":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/","name":"How To Hide And Unhide Sheets In Excel With VBA - My Blog","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/#primaryimage"},"image":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets.png","datePublished":"2019-02-03T03:36:29+00:00","dateModified":"2019-02-09T03:57:11+00:00","author":{"@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"breadcrumb":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/#primaryimage","url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets.png","contentUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/Excel-vba-hide-multiple-sheets.png"},{"@type":"BreadcrumbList","@id":"https:\/\/vbastring.com\/blog\/2019\/02\/03\/how-to-hide-and-unhide-sheets-in-excel-with-vba\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vbastring.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Hide And Unhide Sheets In Excel 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\/434","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=434"}],"version-history":[{"count":5,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/434\/revisions"}],"predecessor-version":[{"id":488,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/434\/revisions\/488"}],"wp:attachment":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/media?parent=434"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/categories?post=434"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/tags?post=434"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}