{"id":39,"date":"2018-10-29T21:38:05","date_gmt":"2018-10-29T21:38:05","guid":{"rendered":"http:\/\/www.vbastring.com\/blog\/?p=39"},"modified":"2018-10-29T22:56:35","modified_gmt":"2018-10-29T22:56:35","slug":"excel-vba-tutorial-pt2","status":"publish","type":"post","link":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/","title":{"rendered":"Excel VBA Tutorial 2"},"content":{"rendered":"<p>In Excel the steps needed to perform a series of actions can be recorded as a macro. In the previous lesson we looked at the before and after shots of the macro window. <\/p>\n<p><strong>Here is an image of the Standard VBA Toolbar, which you will see in all editors of VBA<\/strong><\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/10\/standard_vba_toolbar.jpg\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/10\/standard_vba_toolbar.jpg?resize=685%2C237\" alt=\"standard_vba_toolbar\" width=\"685\" height=\"237\" class=\"aligncenter size-full wp-image-40\" \/><\/a><\/p>\n<p>It is beneficial to look at the code in the module that is generated from the macro recorder in order to see what syntax Excel VBA expects when you manually code, write instructions, for similar steps. <\/p>\n<p>As we saw before, macros are stored in modules. A complete module may contain several sub procedures, each one performing a particular action. An advantage of coding your procedures manually is that you can organize them in a suitable arrangement. <\/p>\n<p>A procedure can be either a function, property, or sub procedure. <\/p>\n<p>A sub procedure follows the following structure: <\/p>\n<pre class=\"lang:default decode:true \" >Sub SubProcedureName(arg1,arg2,etc)\r\n\tstatement1\r\n\tstatement2\r\nEnd Sub<\/pre>\n<table>\n<tr>\n<td>\n\t\t\t\t\t\t<strong>Part<\/strong>\n\t\t\t\t\t<\/td>\n<td>\n\t\t\t\t\t\t<strong>Description<\/strong>\n\t\t\t\t\t<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t\t\tSub\n\t\t\t\t\t<\/td>\n<td>\n\t\t\t\t\t\tThis is the keyword that every sub procedure begins with.\n\t\t\t\t\t<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t\t\tSubProcedureName\n\t\t\t\t\t<\/td>\n<td>\n\t\t\t\t\t\tThis is the name you give to the sub procedure, and the name that appears<br \/>\n\t\t\t\t\t\tin the Macro dialog box.  It would benefit you to be meaningful with this name.\n\t\t\t\t\t<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t\t\tArguments\n\t\t\t\t\t<\/td>\n<td>\n\t\t\t\t\t\tAdditional instructions you are passing to the sub procedure.  You receive these from the<br \/>\n\t\t\t\t\t\tvariable values passed <strong>inside the parentheses<\/strong>.  A sub procedure always includes open and close parentheses<br \/>\n\t\t\t\t\t\teven though it may not have any arguments.\n\t\t\t\t\t<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t\t\tStatements\n\t\t\t\t\t<\/td>\n<td>\n\t\t\t\t\t\tInstructions, commands, you record or write.\n\t\t\t\t\t<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\t\t\tEnd Sub\n\t\t\t\t\t<\/td>\n<td>\n\t\t\t\t\t\tEvery sub procedure ends with these keywords.\n\t\t\t\t\t<\/td>\n<\/tr>\n<\/table>\n<p>\t\t\t-Normally comments, or documentation, you add to the code are colored green, and begin with an apostrophe.  It is<br \/>\n\t\t\t to your benefit to comment your code so you or someone else understands at a later time why you did what you did.<\/p>\n<p>\t\t\t-Identions in your code is good practice and causes it to be more readable. <\/p>\n<p>\t\t\t-Excel VBA automatically capitalizes keywords it recognizes.  This is really helpful in order for you to see if you<br \/>\n\t\t\tspelled the word correctly or not.<\/p>\n<p>\t\t\tOnce you create a sub procedure, it will show up in your macro window (press Alt + F8) to show.  Then select your macro&#8217;s name and click &#8220;Options&#8221; to assign a keyboard shortcut to the macro.<\/p>\n<p>\t\t\tThe video covers:<\/p>\n<p>\t\t\t-Code Display <br \/>\n\t\t\t-Procedure Structure <br \/>\n\t\t\t-Sub Procedure Information  <br \/>\n\t\t\t-Editting And Calling Subs <\/p>\n<p>\t\t\t<iframe loading=\"lazy\" width=\"480\" height=\"315\" src=\"http:\/\/www.youtube.com\/embed\/N2P6GSwBbqw?list=UUIFHCrOMgASUc2a3r5TBhmA&amp;hl=en_US\" frameborder=\"0\" allowfullscreen><\/iframe><\/p>\n<p>\t\t\tTrick: Create a keyboard shorcut for a macro by pressing these keys&#8230;&#8221;ALT + F8&#8243; then click &#8220;Options&#8221;&#8230;enter the keyboard shortcut.<\/p>\n<p>\t\t\t<strong>Here is the code stored in &#8220;Module1&#8221; produced by the macro recorder:<\/strong><\/p>\n<pre class=\"lang:default decode:true \" >Private Sub CommandButton1_Click()\r\n    MyFormat\r\n    \r\nEnd Sub\r\nSub MyFormat()\r\n    'This macro formats the header and total cells\r\n    \r\n    Range(\"A1\").Select\r\n    \r\n    ActiveCell.FormulaR1C1 = \"Quarterly Sales Report\"\r\n    \r\n    With Selection.Font\r\n        .Name = \"Century Schoolbook\"\r\n        .Bold = True\r\n        .Italic = True\r\n        .Size = 14\r\n        \r\n    End With\r\n    \r\n    Range(\"A6:D6\").Select\r\n    \r\n    With Selection\r\n        .HorizontalAlignment = xlCenter\r\n    End With\r\n       \r\n    \r\n    Range(\"A6:D9\").Select\r\n    \r\n    Selection.NumberFormat = \"$#,##0_);[Red]($#,##0)\"\r\n     \r\n    Range(\"A1\").Select\r\n     \r\n    'Call this other procedure\r\n    FormatReportHeader\r\n    \r\nEnd Sub\r\n\r\nSub FormatReportHeader()\r\n\r\n\r\n\r\n    Range(\"A2\").Select\r\n    ActiveCell.FormulaR1C1 = \"Worldwide Motor Cars\"\r\n    Range(\"A3\").Select\r\n    ActiveCell.FormulaR1C1 = \"Subitted By:\"\r\n    Range(\"A4\").Select\r\n    ActiveCell.FormulaR1C1 = \"Date:\"\r\n            \r\nEnd Sub<\/pre>\n<p>Questions? Comments About the Lesson? I want to help. Message me with the form below.<\/p>\n<p>[simple_contact_form]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Excel the steps needed to perform a series of actions can be recorded as a macro. In the previous lesson we looked at the before and after shots of the macro window. Here is an image of the Standard VBA Toolbar, which you will see in all editors of VBA It is beneficial to [&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-39","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>Excel VBA Tutorial 2 - 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\/10\/29\/excel-vba-tutorial-pt2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel VBA Tutorial 2 - My Blog\" \/>\n<meta property=\"og:description\" content=\"In Excel the steps needed to perform a series of actions can be recorded as a macro. In the previous lesson we looked at the before and after shots of the macro window. Here is an image of the Standard VBA Toolbar, which you will see in all editors of VBA It is beneficial to [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/\" \/>\n<meta property=\"og:site_name\" content=\"My Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-29T21:38:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-29T22:56:35+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/10\/standard_vba_toolbar.jpg\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"headline\":\"Excel VBA Tutorial 2\",\"datePublished\":\"2018-10-29T21:38:05+00:00\",\"dateModified\":\"2018-10-29T22:56:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/\"},\"wordCount\":428,\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/standard_vba_toolbar.jpg\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/\",\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/\",\"name\":\"Excel VBA Tutorial 2 - My Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/standard_vba_toolbar.jpg\",\"datePublished\":\"2018-10-29T21:38:05+00:00\",\"dateModified\":\"2018-10-29T22:56:35+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/standard_vba_toolbar.jpg\",\"contentUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/standard_vba_toolbar.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2018\\\/10\\\/29\\\/excel-vba-tutorial-pt2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel VBA Tutorial 2\"}]},{\"@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":"Excel VBA Tutorial 2 - 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\/10\/29\/excel-vba-tutorial-pt2\/","og_locale":"en_US","og_type":"article","og_title":"Excel VBA Tutorial 2 - My Blog","og_description":"In Excel the steps needed to perform a series of actions can be recorded as a macro. In the previous lesson we looked at the before and after shots of the macro window. Here is an image of the Standard VBA Toolbar, which you will see in all editors of VBA It is beneficial to [&hellip;]","og_url":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/","og_site_name":"My Blog","article_published_time":"2018-10-29T21:38:05+00:00","article_modified_time":"2018-10-29T22:56:35+00:00","og_image":[{"url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/10\/standard_vba_toolbar.jpg","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/#article","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/"},"author":{"name":"admin","@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"headline":"Excel VBA Tutorial 2","datePublished":"2018-10-29T21:38:05+00:00","dateModified":"2018-10-29T22:56:35+00:00","mainEntityOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/"},"wordCount":428,"image":{"@id":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/10\/standard_vba_toolbar.jpg","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/","url":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/","name":"Excel VBA Tutorial 2 - My Blog","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/#primaryimage"},"image":{"@id":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/10\/standard_vba_toolbar.jpg","datePublished":"2018-10-29T21:38:05+00:00","dateModified":"2018-10-29T22:56:35+00:00","author":{"@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"breadcrumb":{"@id":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/#primaryimage","url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/10\/standard_vba_toolbar.jpg","contentUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2018\/10\/standard_vba_toolbar.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/vbastring.com\/blog\/2018\/10\/29\/excel-vba-tutorial-pt2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vbastring.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Excel VBA Tutorial 2"}]},{"@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\/39","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=39"}],"version-history":[{"count":5,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/39\/revisions"}],"predecessor-version":[{"id":46,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/39\/revisions\/46"}],"wp:attachment":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/media?parent=39"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/categories?post=39"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/tags?post=39"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}