{"id":14625,"date":"2018-03-17T23:50:00","date_gmt":"2018-03-17T23:50:00","guid":{"rendered":"http:\/\/learnexcelmacro.com\/wp\/?p=14625"},"modified":"2018-03-18T08:22:17","modified_gmt":"2018-03-18T08:22:17","slug":"what-is-immediate-window-and-how-to-use-it-in-excel-vba","status":"publish","type":"post","link":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/","title":{"rendered":"What is Immediate Window and how to use it in Excel VBA"},"content":{"rendered":"

Dear Friends,<\/p>\n

Have you heard of Immediate Window in Excel VBA programming? Do you know how to make use of it? <\/p>\n

If you have not been using this while doing vba programming then trust me you were missing something really cool stuff which excel provided to the programmers.<\/p>\n

In this article I am going to explain you the following<\/p>\n

\n

1. What is immediate window in Excel VBA and how to open it?
\n2. What is the use of Immediate windows?
\n3. Top 5 Usage of immediate window with examples\n<\/p><\/div>\n

What is immediate window in excel vba<\/h1>\n

Immediate window is a plane white background simple window in Visual Basic Editor, which can be used for different purposes. By Default, this window is not visible when you open the VBE in your excel. To view this window in your Excel VBE Click on View –> Immediate Window ( or Use Shortcut key Ctrl + G) <\/em><\/strong>to view this window as shown in below picture<\/p>\n

\"Excel

Excel VBA – View Immediate Window<\/p><\/div>\n

This simple looking window is not as simple as it looks. It is powerful.
\nAs the name of this window itself suggests… this helps in doing many thing while VBA programming very fast (immediately). That could be the main reason why this window was named as “Immediate Window”<\/strong>
\n

\"Excel

Excel VBA – Immediate-Window<\/p><\/div><\/p>\n

Usage of this immediate window <\/h1>\n

#1 – To display the result of Debug.print xyz<\/i> statement in VBA <\/h1>\n

This is the screen where you can see the result of statement Debug.print xyz<\/i> statement which is executed while running your VBA program.
\nDebug.print variable, data etc.<\/em> <\/strong> is the statement which is used to print value of any variable, object etc. <\/p>\n

\"Immediate

Immediate Window – DebugPrint<\/p><\/div>\n

#2 – Simplest way to execute any Excel VBA statement <\/h1>\n

Immediate window can be used to execute excel vba statements directly here. You do not need to write the complete function structure to execute.
\nExample:<\/em><\/strong>To get the count of all sheets in a Workbook, you need to write the complete function in VBE like this<\/p>\n

\r\n\r\n\r\nSub getSheetCount()\r\n\r\nMsgBox Worksheets.Count\r\n\r\nEnd Sub\r\n\r\n<\/code>\r\n<\/pre>\n

Now when you execute this function then you get the sheets count in a message box. <\/p>\n

Using immediate window, you can execute this statement Worksheets.Count<\/em><\/strong> directly and get the count in immediate window itself like shown in below image:<\/p>\n

\"Execute

Execute VBA Statement in Immediate Window<\/p><\/div>\n

Similarly you can execute any statement here in this window.<\/p>\n

#3 – You can call any Macro\/Function from this immediate window<\/h1>\n

If you want to test a function, especially which expects some input parameters, you can call them by using this immediate window.
\nExample:<\/em><\/strong> You have written a simple business function to calculate factorial of given number (input parameter). To test this function, you can not run it without passing the input parameter to this function. To do this, you can simply call this function from immediate window by providing the input parameter.<\/p>\n

\"Function<\/a>

Function Call in Immediate Window<\/p><\/div>\n

#4 – Set or get value of a variable during Debug mode<\/h1>\n

This window can be used to set or get any variable value while running your macro in a debug mode.
\nWhile running your VBA code in debug mode, if you want to test your function for a particular case – When value of variable ABC= XYZ (where XYZ – is a variable which is used in your function)<\/p>\n

In such case, you can set a particular value to a particular variable of you function while running it a debug mode.<\/p>\n

Useful Usecase of this feature <\/h3>\n

For example, if you have a loop in your code and you want to debug your loop for the 6th iteration<\/strong>. In such case, if you run your code in debug mode and put your break point on the beginning of the loop then you have to run the whole loop 6th time and then you will be able to debug it for 6th iteration.
\nBut by using immediate window, you can set the counter variable to 7 directly and your loop will run for 6th iteration itself.
\n

\"Set

Set and Get Variable Values<\/p><\/div><\/p>\n

5# Few important points to remember <\/h1>\n

1# <\/strong>To get value of any variable or statement – start with question mark sing (?)
\n2# <\/strong> To assign any value to a variable or statement equal sign can be used
\n3# <\/strong> Immediate window can be undocked from VBE screen as shown in below image
\n

\"Undocked

Undocked Immediate Window<\/p><\/div><\/p>\n<\/span>","protected":false},"excerpt":{"rendered":"

Dear Friends, Have you heard of Immediate Window in Excel VBA programming? Do you know how to make use of it? If you have not been using this while doing vba programming then trust me you were missing something really cool stuff which excel provided to the programmers. In this article I am going to […]<\/p>\n","protected":false},"author":45,"featured_media":14657,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[1673,1246,1679,1675],"tags":[],"class_list":["post-14625","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-excel-functions","category-macro","category-excel-macro-beginner","category-excel-macro-for-beginners"],"yoast_head":"\nWhat is Immediate Window and how to use it in Excel VBA - Let's excel in Excel<\/title>\n<meta name=\"description\" content=\"Top 5 Usage of immediate window with examples. What is Immediate window in Excel VBA. How to make best use of immediate window in Excel 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:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Immediate Window and how to use it in Excel VBA\" \/>\n<meta property=\"og:description\" content=\"Top 5 Usage of immediate window with examples. What is Immediate window in Excel VBA. How to make best use of immediate window in Excel VBA\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/\" \/>\n<meta property=\"og:site_name\" content=\"Let's excel in Excel\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/vmlogger\" \/>\n<meta property=\"article:author\" content=\"http:\/\/www.facebook.com\/vmlogger\" \/>\n<meta property=\"article:published_time\" content=\"2018-03-17T23:50:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-03-18T08:22:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2018\/03\/Immeidate-Window.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"538\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Vishwamitra Mishra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/www.twitter.com\/learnexcelmacro\" \/>\n<meta name=\"twitter:site\" content=\"@learnexcelmacro\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vishwamitra Mishra\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/\"},\"author\":{\"name\":\"Vishwamitra Mishra\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"headline\":\"What is Immediate Window and how to use it in Excel VBA\",\"datePublished\":\"2018-03-17T23:50:00+00:00\",\"dateModified\":\"2018-03-18T08:22:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/\"},\"wordCount\":775,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2018\/03\/Immeidate-Window.jpg\",\"articleSection\":[\"Excel Functions\",\"Excel Macro\",\"Excel Macro Beginner\",\"Excel Macro Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/\",\"name\":\"What is Immediate Window and how to use it in Excel VBA - Let's excel in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2018\/03\/Immeidate-Window.jpg\",\"datePublished\":\"2018-03-17T23:50:00+00:00\",\"dateModified\":\"2018-03-18T08:22:17+00:00\",\"description\":\"Top 5 Usage of immediate window with examples. What is Immediate window in Excel VBA. How to make best use of immediate window in Excel VBA\",\"breadcrumb\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#primaryimage\",\"url\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2018\/03\/Immeidate-Window.jpg\",\"contentUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2018\/03\/Immeidate-Window.jpg\",\"width\":800,\"height\":538,\"caption\":\"Immediate Window\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/vmlogger.com\/excel\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel Macro\",\"item\":\"https:\/\/vmlogger.com\/excel\/macro\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What is Immediate Window and how to use it in Excel VBA\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\",\"url\":\"https:\/\/vmlogger.com\/excel\/\",\"name\":\"Let's excel in Excel\",\"description\":\"Let's share knowledge\",\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/vmlogger.com\/excel\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\",\"name\":\"Vishwamitra Mishra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2022\/07\/avataaars-1.png\",\"contentUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2022\/07\/avataaars-1.png\",\"width\":528,\"height\":560,\"caption\":\"Vishwamitra Mishra\"},\"logo\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/image\/\"},\"description\":\"My name is Vishwamitra Mishra. Friends Call me Vishwa. I hold a Bachelor\u2019s Degree in Computer Science from D.A.V.V. Indore & currently working as a Technical Lead having over 7 years of experience.\",\"sameAs\":[\"http:\/\/www.learnexcelmacro.com\",\"http:\/\/www.facebook.com\/vmlogger\",\"https:\/\/x.com\/https:\/\/www.twitter.com\/learnexcelmacro\",\"https:\/\/www.youtube.com\/c\/VMLogger\"],\"url\":\"https:\/\/vmlogger.com\/excel\/author\/vishwamitra\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"What is Immediate Window and how to use it in Excel VBA - Let's excel in Excel","description":"Top 5 Usage of immediate window with examples. What is Immediate window in Excel VBA. How to make best use of immediate window in Excel 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:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/","og_locale":"en_US","og_type":"article","og_title":"What is Immediate Window and how to use it in Excel VBA","og_description":"Top 5 Usage of immediate window with examples. What is Immediate window in Excel VBA. How to make best use of immediate window in Excel VBA","og_url":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/","og_site_name":"Let's excel in Excel","article_publisher":"http:\/\/www.facebook.com\/vmlogger","article_author":"http:\/\/www.facebook.com\/vmlogger","article_published_time":"2018-03-17T23:50:00+00:00","article_modified_time":"2018-03-18T08:22:17+00:00","og_image":[{"width":800,"height":538,"url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2018\/03\/Immeidate-Window.jpg","type":"image\/jpeg"}],"author":"Vishwamitra Mishra","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/www.twitter.com\/learnexcelmacro","twitter_site":"@learnexcelmacro","twitter_misc":{"Written by":"Vishwamitra Mishra","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#article","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/"},"author":{"name":"Vishwamitra Mishra","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"headline":"What is Immediate Window and how to use it in Excel VBA","datePublished":"2018-03-17T23:50:00+00:00","dateModified":"2018-03-18T08:22:17+00:00","mainEntityOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/"},"wordCount":775,"commentCount":1,"publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2018\/03\/Immeidate-Window.jpg","articleSection":["Excel Functions","Excel Macro","Excel Macro Beginner","Excel Macro Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/","url":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/","name":"What is Immediate Window and how to use it in Excel VBA - Let's excel in Excel","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#primaryimage"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2018\/03\/Immeidate-Window.jpg","datePublished":"2018-03-17T23:50:00+00:00","dateModified":"2018-03-18T08:22:17+00:00","description":"Top 5 Usage of immediate window with examples. What is Immediate window in Excel VBA. How to make best use of immediate window in Excel VBA","breadcrumb":{"@id":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#primaryimage","url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2018\/03\/Immeidate-Window.jpg","contentUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2018\/03\/Immeidate-Window.jpg","width":800,"height":538,"caption":"Immediate Window"},{"@type":"BreadcrumbList","@id":"https:\/\/vmlogger.com\/excel\/2018\/03\/what-is-immediate-window-and-how-to-use-it-in-excel-vba\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vmlogger.com\/excel\/"},{"@type":"ListItem","position":2,"name":"Excel Macro","item":"https:\/\/vmlogger.com\/excel\/macro\/"},{"@type":"ListItem","position":3,"name":"What is Immediate Window and how to use it in Excel VBA"}]},{"@type":"WebSite","@id":"https:\/\/vmlogger.com\/excel\/#website","url":"https:\/\/vmlogger.com\/excel\/","name":"Let's excel in Excel","description":"Let's share knowledge","publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vmlogger.com\/excel\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5","name":"Vishwamitra Mishra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/image\/","url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2022\/07\/avataaars-1.png","contentUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2022\/07\/avataaars-1.png","width":528,"height":560,"caption":"Vishwamitra Mishra"},"logo":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/image\/"},"description":"My name is Vishwamitra Mishra. Friends Call me Vishwa. I hold a Bachelor\u2019s Degree in Computer Science from D.A.V.V. Indore & currently working as a Technical Lead having over 7 years of experience.","sameAs":["http:\/\/www.learnexcelmacro.com","http:\/\/www.facebook.com\/vmlogger","https:\/\/x.com\/https:\/\/www.twitter.com\/learnexcelmacro","https:\/\/www.youtube.com\/c\/VMLogger"],"url":"https:\/\/vmlogger.com\/excel\/author\/vishwamitra\/"}]}},"_links":{"self":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/14625"}],"collection":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/users\/45"}],"replies":[{"embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/comments?post=14625"}],"version-history":[{"count":0,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/14625\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media\/14657"}],"wp:attachment":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media?parent=14625"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/categories?post=14625"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/tags?post=14625"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}