{"id":244552,"date":"2023-10-20T17:57:12","date_gmt":"2023-10-20T17:57:12","guid":{"rendered":"https:\/\/vmlogger.com\/excel\/?p=244552"},"modified":"2023-10-20T17:57:12","modified_gmt":"2023-10-20T17:57:12","slug":"top-10-useful-excel-macro-vba-codes-examples-for-beginners","status":"publish","type":"post","link":"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/","title":{"rendered":"Top 10 Useful Excel Macro [VBA] Codes Examples – [For Beginners]"},"content":{"rendered":"

Microsoft Excel is a powerful tool for data analysis and reporting. However, you can supercharge your Excel experience by using VBA (Visual Basic for Applications) to automate tasks and extend Excel’s capabilities. In this blog post, we’ll explore the top 10 VBA code snippets for Excel<\/strong> that can boost your productivity.<\/p>\n

If you do not know – how to use these snippets in your excel sheet, refer to my beginner’s tutorial – How to create a simple excel macro in Excel<\/a><\/p>\n

\n

Top 10 Excel VBA Code Snippets for beginners<\/h3>\n

1. How to create a message box in Excel Macro?<\/a>
\n
2. How to loop through Sheets and cells?<\/a>
\n
3. How to automatically resize rows and columns in Excel Macro?<\/a>
\n
4. How to create a file dialoge for importing data via Excel Macro?<\/a>
\n
5. How to create a simple User form in Excel Macro?<\/a>
\n
6. How to copy and paste data in Excel via Excel Macro?<\/a>
\n
7. How to do conditional formatting using Excel Macro?<\/a>
\n
8. How to create simple pivot table using Excel Macro?<\/a>
\n
9. Excel Macro to export data to PDF file<\/a>
\n
10. Excel Macro to refresh data connections automatically<\/a>\n<\/div>\n

<\/a><\/p>\n

1. Creating a Simple Message Box<\/h2>\n

A message box is a common way to display information or collect user input. This snippet shows you how to create a basic message box.<\/p>\n

\r\nSub ShowMessageBox()\r\n    MsgBox \"Hello, World!\", vbInformation, \"Cool Box Title\"\r\nEnd Sub\r\n<\/pre>\n

Here, we use the MsgBox function to display a message with a title and icon. You can customize the message and appearance to your needs.<\/p>\n

<\/a><\/p>\n

2. Looping Through Worksheets and Cells<\/h2>\n

Excel workbooks often contain multiple worksheets with various data. This code snippet helps you loop through all worksheets and cells to perform operations.<\/p>\n

\r\nSub LoopThroughWorksheetsAndCells()\r\n    Dim ws As Worksheet\r\n    For Each ws In ThisWorkbook.Worksheets\r\n        Dim cell As Range\r\n        For Each cell In ws.UsedRange\r\n            ' Your code here\r\n        Next cell\r\n    Next ws\r\nEnd Sub\r\n<\/pre>\n

This code snippet allows you to access and process data in each cell of every worksheet in your workbook.<\/p>\n

<\/a><\/p>\n

3. Automatically Resizing Columns and Rows<\/h2>\n

Fitting your content neatly in Excel is essential. This code snippet auto-adjusts columns and rows to fit your data.<\/p>\n

\r\nSub AutoResizeColumnsAndRows()\r\n    Dim ws As Worksheet\r\n    Set ws = ThisWorkbook.Worksheets(\"Sheet1\") ' Change to your sheet name\r\n    ws.Cells.EntireColumn.AutoFit\r\n    ws.Cells.EntireRow.AutoFit\r\nEnd Sub\r\n<\/pre>\n

Running this code will make sure your data is easily readable without manual adjustments.<\/p>\n

<\/a><\/p>\n

4. Opening a File Dialog and Importing Data<\/h2>\n

Sometimes, you need to import external data into Excel. This code lets you open a file dialog for the user to select a file to import.<\/p>\n

\r\nSub ImportDataFromFileDialog()\r\n    Dim FileDialog As FileDialog\r\n    Set FileDialog = Application.FileDialog(msoFileDialogFilePicker)\r\n    If FileDialog.Show = -1 Then\r\n        Workbooks.Open FileDialog.SelectedItems(1)\r\n    End If\r\nEnd Sub\r\n<\/pre>\n

This code makes it easy to bring data from external sources into your Excel workbook.<\/p>\n

<\/a><\/p>\n

5. Creating a UserForm for Data Input<\/h2>\n

UserForms are a fantastic way to collect structured data. This snippet opens a UserForm you’ve created in the VBA editor.<\/p>\n

\r\nSub ShowDataEntryForm()\r\n    UserForm1.Show\r\nEnd Sub\r\n<\/pre>\n

In the VBA editor, you can design the UserForm with various input controls like text boxes, combo boxes, and buttons. This form makes data entry more user-friendly.<\/p>\n

<\/a><\/p>\n

6. Copying and Pasting Data<\/h2>\n

Copying and pasting data in Excel is a common operation. This code automates the process.<\/p>\n

\r\nSub CopyAndPasteData()\r\n    Sheets(\"Sheet1\").Range(\"A1:A10\").Copy\r\n    Sheets(\"Sheet2\").Range(\"B1\").PasteSpecial Paste:=xlPasteValues\r\nEnd Sub\r\n<\/pre>\n

This code snippet shows how to copy data from one location and paste it to another with options like xlPasteValues to paste just the values.<\/p>\n

<\/a><\/p>\n

7. Conditional Formatting<\/h2>\n

Conditional formatting is a powerful tool to highlight specific data based on certain conditions. VBA can help you apply conditional formatting rules programmatically.<\/p>\n

\r\nSub ApplyConditionalFormatting()\r\n    Dim rng As Range\r\n    Set rng = Sheets(\"Sheet1\").Range(\"B2:B10\")\r\n    With rng.FormatConditions.Add(xlCellValue, xlBetween, \"10\", \"20\")\r\n        .Interior.Color = RGB(255, 0, 0) ' Red\r\n    End With\r\nEnd Sub\r\n<\/pre>\n

In this example, we apply conditional formatting to cells within a specified range that fall between 10 and 20.<\/p>\n

<\/a><\/p>\n

8. Creating PivotTables<\/h2>\n

PivotTables are excellent for summarizing and analyzing data. This code creates a PivotTable from a data source.<\/p>\n

\r\nSub CreatePivotTable()\r\n    Dim ws As Worksheet\r\n    Set ws = ThisWorkbook.Worksheets(\"Sheet1\")\r\n    ws.PivotTableWizard\r\nEnd Sub\r\n<\/pre>\n

You can expand this code to define the data source and PivotTable layout.<\/p>\n

<\/a><\/p>\n

9. Exporting Data to PDF<\/h2>\n

Sharing your Excel data in PDF format is common. This code snippet demonstrates how to export a specific worksheet as a PDF.<\/p>\n

\r\nSub ExportToPDF()\r\n    Sheets(\"Sheet1\").ExportAsFixedFormat Type:=xlTypePDF, Filename:=\"C:\\ExportedFile.pdf\"\r\nEnd Sub\r\n<\/pre>\n

You can specify the file path and customize the PDF options.<\/p>\n

<\/a><\/p>\n

10. Automatically Refreshing Data Connections<\/h2>\n

When working with external data sources, you can ensure that the data is up-to-date by automatically refreshing data connections. You can simply create a refresh button in your excel sheet and link the following VBA code snippet behind it. How to create a button and associate a macro behind it, refer to my previous tutorial – How to add different controls in excel such as Button, Checkbox, radio button, etc.<\/a> <\/p>\n

\r\nSub RefreshDataConnections()\r\n    ThisWorkbook.Connections(\"ConnectionName\").Refresh\r\nEnd Sub\r\n<\/pre>\n

Replace “ConnectionName” with the name of your data connection.<\/p>\n

\nIn this blog post, we’ve covered a range of VBA code snippets to enhance your Excel experience. These snippets help you automate common tasks, from data manipulation to creating user-friendly forms. Remember to save your Excel file as a macro-enabled workbook (.xlsm) to use these VBA code snippets effectively. With VBA, you can take your Excel skills to the next level and become more efficient in handling data and automating your work.<\/p>\n

If you have any questions or need further clarification on any of these snippets, feel free to ask in the comments section.\n<\/p><\/div>\n<\/span>","protected":false},"excerpt":{"rendered":"

Microsoft Excel is a powerful tool for data analysis and reporting. However, you can supercharge your Excel experience by using VBA (Visual Basic for Applications) to automate tasks and extend Excel’s capabilities. In this blog post, we’ll explore the top 10 VBA code snippets for Excel that can boost your productivity. If you do not […]<\/p>\n","protected":false},"author":45,"featured_media":244562,"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":[1246,1679],"tags":[],"yoast_head":"\nTop 10 Useful Excel Macro [VBA] Codes Examples - [For Beginners] - Let's excel in Excel<\/title>\n<meta name=\"description\" content=\"Top 10 excel vba code snippets free | excel vba programming examples download | Excel Macros FREE Download | Top 10 Very useful Excel Macros\" \/>\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\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Top 10 Useful Excel Macro [VBA] Codes Examples - [For Beginners]\" \/>\n<meta property=\"og:description\" content=\"Top 10 excel vba code snippets free | excel vba programming examples download | Excel Macros FREE Download | Top 10 Very useful Excel Macros\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/\" \/>\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=\"2023-10-20T17:57:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2023\/10\/top-10-vb-code-snippets.gif\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/gif\" \/>\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<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/\"},\"author\":{\"name\":\"Vishwamitra Mishra\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"headline\":\"Top 10 Useful Excel Macro [VBA] Codes Examples – [For Beginners]\",\"datePublished\":\"2023-10-20T17:57:12+00:00\",\"dateModified\":\"2023-10-20T17:57:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/\"},\"wordCount\":766,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"articleSection\":[\"Excel Macro\",\"Excel Macro Beginner\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/\",\"name\":\"Top 10 Useful Excel Macro [VBA] Codes Examples - [For Beginners] - Let's excel in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\"},\"datePublished\":\"2023-10-20T17:57:12+00:00\",\"dateModified\":\"2023-10-20T17:57:12+00:00\",\"description\":\"Top 10 excel vba code snippets free | excel vba programming examples download | Excel Macros FREE Download | Top 10 Very useful Excel Macros\",\"breadcrumb\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/#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\":\"Top 10 Useful Excel Macro [VBA] Codes Examples – [For Beginners]\"}]},{\"@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\":\"required name=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:\/\/twitter.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":"Top 10 Useful Excel Macro [VBA] Codes Examples - [For Beginners] - Let's excel in Excel","description":"Top 10 excel vba code snippets free | excel vba programming examples download | Excel Macros FREE Download | Top 10 Very useful Excel Macros","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\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/","og_locale":"en_US","og_type":"article","og_title":"Top 10 Useful Excel Macro [VBA] Codes Examples - [For Beginners]","og_description":"Top 10 excel vba code snippets free | excel vba programming examples download | Excel Macros FREE Download | Top 10 Very useful Excel Macros","og_url":"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/","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":"2023-10-20T17:57:12+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2023\/10\/top-10-vb-code-snippets.gif","type":"image\/gif"}],"author":"Vishwamitra Mishra","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/www.twitter.com\/learnexcelmacro","twitter_site":"@learnexcelmacro","twitter_misc":{"Written by":"Vishwamitra Mishra"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/#article","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/"},"author":{"name":"Vishwamitra Mishra","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"headline":"Top 10 Useful Excel Macro [VBA] Codes Examples – [For Beginners]","datePublished":"2023-10-20T17:57:12+00:00","dateModified":"2023-10-20T17:57:12+00:00","mainEntityOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/"},"wordCount":766,"commentCount":0,"publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"articleSection":["Excel Macro","Excel Macro Beginner"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/","url":"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/","name":"Top 10 Useful Excel Macro [VBA] Codes Examples - [For Beginners] - Let's excel in Excel","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/#website"},"datePublished":"2023-10-20T17:57:12+00:00","dateModified":"2023-10-20T17:57:12+00:00","description":"Top 10 excel vba code snippets free | excel vba programming examples download | Excel Macros FREE Download | Top 10 Very useful Excel Macros","breadcrumb":{"@id":"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vmlogger.com\/excel\/2023\/10\/top-10-useful-excel-macro-vba-codes-examples-for-beginners\/#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":"Top 10 Useful Excel Macro [VBA] Codes Examples – [For Beginners]"}]},{"@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":"required name=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:\/\/twitter.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\/244552"}],"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=244552"}],"version-history":[{"count":0,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/244552\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media\/244562"}],"wp:attachment":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media?parent=244552"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/categories?post=244552"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/tags?post=244552"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}