{"id":472,"date":"2019-02-09T03:51:23","date_gmt":"2019-02-09T03:51:23","guid":{"rendered":"http:\/\/www.vbastring.com\/blog\/?p=472"},"modified":"2019-02-27T00:18:39","modified_gmt":"2019-02-27T00:18:39","slug":"have-excel-vba-find-a-value-based-on-a-userform-entry","status":"publish","type":"post","link":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/","title":{"rendered":"Have Excel VBA Find A Value Based On A UserForm Entry"},"content":{"rendered":"<p>This post will show you how to find and filter your worksheet based<br \/>\non the value in your text box.<\/p>\n<p>Here is a short description of what we want to do:<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/excel-vba-find-value1.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-find-value1.png?resize=599%2C850\" alt=\"\" width=\"599\" height=\"850\" class=\"alignleft size-full wp-image-475\" \/><\/a><\/p>\n<p>Since we are using VBA, we can use ADO, and not the standard Find\/Replace function<br \/>\nExcel provides.<\/p>\n<p>The following example will allow the user to enter a name in the text box on the UserForm, and<br \/>\nfind the value from the list of contacts on the worksheet.  <\/p>\n<p>Our select statement will cause VBA to seek out the desired row values.<\/p>\n<p>In the following example, we are looking to populate the combo box with customers in &#8220;London&#8221;.  So &#8220;London&#8221; gets typed in, and 6 rows get found by the code.<br \/>\nOnly 4 are shown here because of the space issue, but 6 records are found according to the red label.<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/excel-vba-find-value2.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-find-value2.png?resize=802%2C829\" alt=\"\" width=\"802\" height=\"829\" class=\"alignleft size-full wp-image-477\" \/><\/a><\/p>\n<p>Here is the UserForm:<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/excel-vba-find-value3.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-find-value3.png?resize=770%2C304\" alt=\"\" width=\"770\" height=\"304\" class=\"alignleft size-full wp-image-479\" \/><\/a><\/p>\n<p>So basically here is the entire code:<\/p>\n<p><em>First you click the &#8220;Search&#8221; button<\/em><\/p>\n<pre class=\"lang:vb decode:true \" >Private Sub btnSearch_Click()\r\n    \r\n    FindContacts\r\nEnd Sub\r\n\r\nSub FindContacts()\r\n\r\n    'Purpose: Load combo with selected contacts\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    Dim intCounter As Integer\r\n    Dim strSearchText As String\r\n    \r\n    Me.cboResults.Clear\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    'In order to do queries with a WHERE clause, you need to name the range, otherwise use the worksheet name.\r\n\r\n    strSQL = \"SELECT * FROM [Contacts] WHERE City = '\" &amp; Me.txtSearchText &amp; \"' ORDER BY 'Contact Name'\"\r\n    \r\n    Set rst = cnn.Execute(strSQL)\r\n    \r\n    lngCount = 0\r\n    \r\n    If Not rst.EOF Then\r\n        \r\n        Do Until rst.EOF\r\n            Me.cboResults.AddItem rst(0)\r\n               \r\n           lngCount = lngCount + 1\r\n           rst.Movenext\r\n        Loop\r\n        \r\n        \r\n        rst.Close\r\n        Set rst = Nothing\r\n        cnn.Close\r\n        Set cnn = Nothing\r\n    \r\n        Me.lblMessage.Caption = lngCount &amp; \" record(s) found based on your selection.\"\r\n        DoEvents\r\n    Else\r\n                \r\n        Me.lblMessage.Caption = \"No data found based on your selection.\"\r\n        DoEvents\r\n    End If\r\n\r\n    \r\nEnd Sub\r\n<\/pre>\n<p>The code filters the list by the entry and add the items to the combo box.<\/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\/x6DYZHni5_o\" 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>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>This post will show you how to find and filter your worksheet based on the value in your text box. Here is a short description of what we want to do: Since we are using VBA, we can use ADO, and not the standard Find\/Replace function Excel provides. The following example will allow the user [&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-472","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>Have Excel VBA Find A Value Based On A UserForm Entry - 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\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Have Excel VBA Find A Value Based On A UserForm Entry - My Blog\" \/>\n<meta property=\"og:description\" content=\"This post will show you how to find and filter your worksheet based on the value in your text box. Here is a short description of what we want to do: Since we are using VBA, we can use ADO, and not the standard Find\/Replace function Excel provides. The following example will allow the user [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/\" \/>\n<meta property=\"og:site_name\" content=\"My Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-09T03:51:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-02-27T00:18:39+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/excel-vba-find-value1.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\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"headline\":\"Have Excel VBA Find A Value Based On A UserForm Entry\",\"datePublished\":\"2019-02-09T03:51:23+00:00\",\"dateModified\":\"2019-02-27T00:18:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/\"},\"wordCount\":206,\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/excel-vba-find-value1.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/\",\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/\",\"name\":\"Have Excel VBA Find A Value Based On A UserForm Entry - My Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/excel-vba-find-value1.png\",\"datePublished\":\"2019-02-09T03:51:23+00:00\",\"dateModified\":\"2019-02-27T00:18:39+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/excel-vba-find-value1.png\",\"contentUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/excel-vba-find-value1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/02\\\/09\\\/have-excel-vba-find-a-value-based-on-a-userform-entry\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Have Excel VBA Find A Value Based On A UserForm Entry\"}]},{\"@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":"Have Excel VBA Find A Value Based On A UserForm Entry - 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\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/","og_locale":"en_US","og_type":"article","og_title":"Have Excel VBA Find A Value Based On A UserForm Entry - My Blog","og_description":"This post will show you how to find and filter your worksheet based on the value in your text box. Here is a short description of what we want to do: Since we are using VBA, we can use ADO, and not the standard Find\/Replace function Excel provides. The following example will allow the user [&hellip;]","og_url":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/","og_site_name":"My Blog","article_published_time":"2019-02-09T03:51:23+00:00","article_modified_time":"2019-02-27T00:18:39+00:00","og_image":[{"url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/excel-vba-find-value1.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\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/#article","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/"},"author":{"name":"admin","@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"headline":"Have Excel VBA Find A Value Based On A UserForm Entry","datePublished":"2019-02-09T03:51:23+00:00","dateModified":"2019-02-27T00:18:39+00:00","mainEntityOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/"},"wordCount":206,"image":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/excel-vba-find-value1.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/","url":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/","name":"Have Excel VBA Find A Value Based On A UserForm Entry - My Blog","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/#primaryimage"},"image":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/excel-vba-find-value1.png","datePublished":"2019-02-09T03:51:23+00:00","dateModified":"2019-02-27T00:18:39+00:00","author":{"@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"breadcrumb":{"@id":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/#primaryimage","url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/excel-vba-find-value1.png","contentUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/02\/excel-vba-find-value1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/vbastring.com\/blog\/2019\/02\/09\/have-excel-vba-find-a-value-based-on-a-userform-entry\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vbastring.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Have Excel VBA Find A Value Based On A UserForm Entry"}]},{"@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\/472","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=472"}],"version-history":[{"count":5,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/472\/revisions"}],"predecessor-version":[{"id":577,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/472\/revisions\/577"}],"wp:attachment":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/media?parent=472"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/categories?post=472"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/tags?post=472"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}