{"id":1229,"date":"2013-12-10T14:00:14","date_gmt":"2013-12-10T14:00:14","guid":{"rendered":"http:\/\/excelvbatutor.com\/?page_id=1229"},"modified":"2019-04-19T07:41:35","modified_gmt":"2019-04-19T07:41:35","slug":"excel-vba-2010-lesson-12-looping","status":"publish","type":"page","link":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/","title":{"rendered":"Excel 2010 VBA  Lesson 12: Looping"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">&nbsp;<strong><a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-lesson-11-decision-making-2-select-case-end-select\/\">[Lesson 11]<\/a>&lt;&lt;<a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-tutorial\/\">[Table of Contents]<\/a>&gt;&gt;<a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-13-do-loop\/\">[Lesson 13]<\/a><\/strong><\/h4>\n\n\n\n<p>Excel 2010 &nbsp;VBA &nbsp;allows a procedure to repeat many times until a condition is met. This is called&nbsp;looping.&nbsp; There are three kinds of loops, &nbsp;the For\u2026\u2026.Next loop, the While\u2026.Wend loop and the Do\u2026<g class=\"gr_ gr_12 gr-alert gr_gramm gr_inline_cards gr_run_anim Style multiReplace\" id=\"12\" data-gr-id=\"12\">Loop .<\/g><\/p>\n\n\n\n<p><script async=\"\" src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br>\n<ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"9639157585\"><\/ins><br>\n<script><br \/>\n     (adsbygoogle = window.adsbygoogle || []).push({});<br \/>\n<\/script><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">12.1 One level For\u2026..Next Loop<\/h3>\n\n\n\n<p>The one level For\u2026.Next Loop event procedure is written as follows:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">For counter=<em>startNumber<\/em> to <em>endNumber<\/em> (Step increment)<br> One or more VB statements<br>Next<\/pre>\n\n\n\n<p>*We shall deal with the For\u2026\u2026\u2026Next loop and the&nbsp;While\u2026.Wend loop&nbsp;first and the Do\u2026.Loop in the next lesson.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Example 12.1<\/h4>\n\n\n\n<p>In this Excel 2010 VBA &nbsp;program, you place the command button on the spreadsheet then click on it to go into the Excel 2010 VBA editor. When you click on the button, the Excel VBA program will fill cells(1,1) with the value of 1, cells(2,1) with the value of 2, cells(3,1) with the value of 3\u2026\u2026until cells (10,1) with the value of 10. The position of each cell in the Excel spreadsheet is referenced with cells(i,j), where i represents a row and j represent a column. We shall learn more about cells in future lessons.<\/p>\n\n\n\n<p><strong>The Code<\/strong>\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Private Sub CommandButton1_Click()\nDim i As Integer\nFor i = 1 To 10\n Cells(i, 1).Value = i\n Cells(i,2).Value=i^2\nNext\nEnd Sub\n<\/pre>\n\n\n\n<p>* i^2 means i<sup>2<\/sup><\/p>\n\n\n\n<p><script async=\"\" src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br>\n<ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"9639157585\"><\/ins><br>\n<script><br \/>\n     (adsbygoogle = window.adsbygoogle || []).push({});<br \/>\n<\/script><br>\nThe Output is shown in Figure 12.1<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.11.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"288\" height=\"384\" src=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.11.jpg\" alt=\"vba2010_fig12.1\" class=\"wp-image-1636\"\/><\/a><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Figure 12.1<\/h4>\n\n\n\n<h4 class=\"wp-block-heading\">Example 12.2<\/h4>\n\n\n\n<p>For\u2026\u2026..Next loop with step increments. In this example, the number increases by 2 at a time. The resulting series is 1,3,5,7,9 displayed in Cells(1,1), Cells(3,1),Cells(5,1), Cells(7,1) and Cells(9,1) respectively.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">The code<\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">Private Sub CommandButton1_Click()\nDim i As Integer\nFor i = 1 To 10 &nbsp;Step 2\n Cells(i, 1).Value = i\nNext\nEnd Sub\n<\/pre>\n\n\n\n<p>The Output<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.2.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"357\" height=\"408\" src=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.2.jpg\" alt=\"vba2010_fig12.2\" class=\"wp-image-1237\"\/><\/a><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Figure 12.2<\/h4>\n\n\n\n<p><script async=\"\" src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br>\n<!-- Excel VBA Responsive --><br>\n<ins class=\"adsbygoogle\" style=\"display: block;\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"2763751108\" data-ad-format=\"auto\"><\/ins><br>\n<script><br \/>\n(adsbygoogle = window.adsbygoogle || []).push({});<br \/>\n<\/script><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">12.2 Nested For\u2026.Next Loops<\/h4>\n\n\n\n<p>Nested For\u2026\u2026.Next loops mean there more than one For\u2026Next Loops are nested within the first level For\u2026..Next loop. The structure is as follows:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">For counter=<em>startNumber1<\/em>&nbsp;to&nbsp;<em>endNumber1<\/em>\nFor counter=<em>startNumber2<\/em>&nbsp;to&nbsp;<em>endNumber2<\/em>\nFor counter=<em>startNumber3<\/em>&nbsp;to&nbsp;<em>endNumber3<\/em>\n One or more VB statements\nNext\nNext\nNext\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Example 12.3<\/h4>\n\n\n\n<p>In this example , we use &nbsp;nested loop to insert the values of i+j from cells(1,1),cells(1,2),cells(1,3),cells(1,4),cells(1,5) \u2026\u2026\u2026.until cells(10,5).<\/p>\n\n\n\n<p><strong>The code&nbsp;<\/strong>\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Private Sub CommandButton1_Click()\nDim i, j As Integer\nFor i = 1 To 10\nFor j = 1 To 5\n Cells(i, j).Value = i + j\nNext\nNext\nEnd Sub\n<\/pre>\n\n\n\n<p><strong>The Output<\/strong><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.3.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"411\" height=\"420\" src=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.3.jpg\" alt=\"vba2010_fig12.3\" class=\"wp-image-1240\"\/><\/a><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Figure 12.3<\/h4>\n\n\n\n<p><strong>12.3 &nbsp;While\u2026.Wend &nbsp;Loop<\/strong><\/p>\n\n\n\n<p>The structure of a While\u2026.Wend Loop is very similar to the Do Loop. it takes the following form:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">While condition\n Statements\nWend\n<\/pre>\n\n\n\n<p>The above loop means that while the condition is not met, the loop will go on. The loop will end when the condition is met. Let\u2019s examine the program listed in example 12.4.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Example 12.4<\/h4>\n\n\n\n<p>In this example, the Excel VBA program will compute the square of numbers from 1 to 15 and displays them from Cells(1,1) to Cells(15,1)<\/p>\n\n\n\n<p><strong>The Code<\/strong>\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Private Sub CommandButton1_Click()\nDim i As Integer\ni = 1\nWhile i &lt;= 15\n Cells(i, 1) = i ^ 2\n i = i + 1\nWend\nEnd Sub\n<\/pre>\n\n\n\n<p><strong>The Output<\/strong><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.4.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"354\" height=\"471\" src=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.4.jpg\" alt=\"vba2010_fig12.4\" class=\"wp-image-1243\"\/><\/a><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Figure 12.4<\/h4>\n\n\n\n<p><script async=\"\" src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br>\n<ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"9639157585\"><\/ins><br>\n<script><br \/>\n     (adsbygoogle = window.adsbygoogle || []).push({});<br \/>\n<\/script><br>\n<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">&nbsp;<strong><a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-lesson-11-decision-making-2-select-case-end-select\/\">[Lesson 11]<\/a>&lt;&lt;<a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-tutorial\/\">[Table of Contents]<\/a>&gt;&gt;<a href=\"http:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-13-do-loop\/\">[Lesson 13]<\/a><\/strong><\/h4>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp;[Lesson 11]&lt;&lt;[Table of Contents]&gt;&gt;[Lesson 13] Excel 2010 &nbsp;VBA &nbsp;allows a procedure to repeat many times until a condition is met. This is called&nbsp;looping.&nbsp; There are three kinds of loops, &nbsp;the For\u2026\u2026.Next loop, the While\u2026.Wend loop and the Do\u2026Loop . 12.1 One level For\u2026..Next Loop The one level For\u2026.Next Loop event procedure is written as follows: &hellip; <a href=\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Excel 2010 VBA  Lesson 12: Looping&#8221;<\/span><\/a><\/p>\n","protected":false},"author":5012,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[5,11],"tags":[55,56,57,54,51],"class_list":["post-1229","page","type-page","status-publish","hentry","category-decison-making","category-loop","tag-do-until-loop","tag-do-while-loop","tag-do-loop-until","tag-do-loop-while","tag-loop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Excel 2010 VBA Lesson 12: Looping - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor<\/title>\n<meta name=\"description\" content=\"This lesson illustrates the concept of looping in Excel 2010 VBA\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel 2010 VBA Lesson 12: Looping - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor\" \/>\n<meta property=\"og:description\" content=\"This lesson illustrates the concept of looping in Excel 2010 VBA\" \/>\n<meta property=\"og:url\" content=\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/\" \/>\n<meta property=\"og:site_name\" content=\"Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor\" \/>\n<meta property=\"article:modified_time\" content=\"2019-04-19T07:41:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.11.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"288\" \/>\n\t<meta property=\"og:image:height\" content=\"384\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/\",\"url\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/\",\"name\":\"Excel 2010 VBA Lesson 12: Looping - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor\",\"isPartOf\":{\"@id\":\"https:\/\/excelvbatutor.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.11.jpg\",\"datePublished\":\"2013-12-10T14:00:14+00:00\",\"dateModified\":\"2019-04-19T07:41:35+00:00\",\"description\":\"This lesson illustrates the concept of looping in Excel 2010 VBA\",\"breadcrumb\":{\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/#primaryimage\",\"url\":\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.11.jpg\",\"contentUrl\":\"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.11.jpg\",\"width\":288,\"height\":384},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/excelvbatutor.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel 2010 VBA Lesson 12: Looping\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/excelvbatutor.com\/#website\",\"url\":\"https:\/\/excelvbatutor.com\/\",\"name\":\"Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor\",\"description\":\"Master Excel VBA with free tutorials, examples, and personalized guidance. Perfect for beginners and advanced users looking to automate Excel.\",\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Excel 2010 VBA Lesson 12: Looping - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor","description":"This lesson illustrates the concept of looping in Excel 2010 VBA","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:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/","og_locale":"en_US","og_type":"article","og_title":"Excel 2010 VBA Lesson 12: Looping - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor","og_description":"This lesson illustrates the concept of looping in Excel 2010 VBA","og_url":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/","og_site_name":"Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor","article_modified_time":"2019-04-19T07:41:35+00:00","og_image":[{"width":288,"height":384,"url":"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.11.jpg","type":"image\/jpeg"}],"twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/","url":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/","name":"Excel 2010 VBA Lesson 12: Looping - Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor","isPartOf":{"@id":"https:\/\/excelvbatutor.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/#primaryimage"},"image":{"@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/#primaryimage"},"thumbnailUrl":"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.11.jpg","datePublished":"2013-12-10T14:00:14+00:00","dateModified":"2019-04-19T07:41:35+00:00","description":"This lesson illustrates the concept of looping in Excel 2010 VBA","breadcrumb":{"@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/#primaryimage","url":"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.11.jpg","contentUrl":"https:\/\/excelvbatutor.com\/wp-content\/uploads\/2013\/12\/vba2010_fig12.11.jpg","width":288,"height":384},{"@type":"BreadcrumbList","@id":"https:\/\/excelvbatutor.com\/index.php\/excel-vba-2010-lesson-12-looping\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/excelvbatutor.com\/"},{"@type":"ListItem","position":2,"name":"Excel 2010 VBA Lesson 12: Looping"}]},{"@type":"WebSite","@id":"https:\/\/excelvbatutor.com\/#website","url":"https:\/\/excelvbatutor.com\/","name":"Learn Excel VBA Online \u2013 Step-by-Step Tutorials &amp; Courses | ExcelVBATutor","description":"Master Excel VBA with free tutorials, examples, and personalized guidance. Perfect for beginners and advanced users looking to automate Excel.","inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/pages\/1229","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/users\/5012"}],"replies":[{"embeddable":true,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/comments?post=1229"}],"version-history":[{"count":51,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/pages\/1229\/revisions"}],"predecessor-version":[{"id":3322,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/pages\/1229\/revisions\/3322"}],"wp:attachment":[{"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/media?parent=1229"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/categories?post=1229"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/excelvbatutor.com\/index.php\/wp-json\/wp\/v2\/tags?post=1229"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}