{"id":4811,"date":"2016-12-02T07:11:41","date_gmt":"2016-12-02T07:11:41","guid":{"rendered":"http:\/\/www.learnexcelmacro.com\/wp\/?p=4811"},"modified":"2022-08-12T12:13:28","modified_gmt":"2022-08-12T12:13:28","slug":"how-to-open-file-explorer-in-vba","status":"publish","type":"post","link":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/","title":{"rendered":"Windows FileDialog to Select File or Folder Path in VBA"},"content":{"rendered":"

Dear friends,<\/p>\n

In my many Excel Tools, wherever there is a need for a file path to be entered from your local PC, I try to put a browse button to locate that file in your Windows PC through the windows file explorer window. It is the same window that you might have seen in windows for selecting a file.
\n

\"File

File Dialog – File Picker<\/p><\/div><\/p>\n

How to create your own button in a style whatever you like<\/h3>\n

You can say what is a big deal in it to create a button in Excel. Anyone can add a button from developer tab<\/a>. Yes, I agree but in this button, you may not find options to give a lot of effect and style you want to give it to your button. So to do that here is a simple trick. In Microsoft Office PowerPoint on even in your excel sheet, you can design your own button however you like. Here are some samples, I have designed for you. Download it and start making your macro buttons <\/a> look like any stylish webpage buttons.
\nNow, though I have been mentioning above that you can create different types of Stylish buttons, actually, I lied to you. What I mean is you can create an image\/shape which will look like a button. But don’t worry, in the next step you will see that it will also work like a button \ud83d\ude42
\n

\"Design<\/a>

Design Buttons in Excel<\/p><\/div><\/p>\n

How to assign a macro to an Image button<\/h3>\n

Unlike a command button in excel you just can not double click and it will take you to the VBA code editor where you can write a code that you want to be executed on clicking on those images or buttons whatever you call them \ud83d\ude42
\nTo work like a button you need to create a Sub procedure<\/strong> i.e. in other words macro which you want to execute on clicking this image or shapes.
\n
\nNow right-click on the image\/shape which you have added and click on Assign Macro as shown in the below image<\/p>\n

\"How<\/a>

How to assign Macro to an Image<\/p><\/div>\n

Code to make a browse button work <\/h3>\n

FileDialog<\/strong> is the object which is used for windows file explorer. There are 4 different types of dialogs which you can choose as shown below. Here we need to get the path of a file then we will use dialog type as msoFileDialogFilePicker<\/i><\/strong>
\n

\"File<\/a>

File Dialog in VBA<\/p><\/div><\/p>\n

VBA to Select a File Path using Windows File Dialog<\/h2>\n
\r\nSub browseFilePath()\r\n    On Error GoTo err\r\n    Dim fileExplorer As FileDialog\r\n    Set fileExplorer = Application.FileDialog(msoFileDialogFilePicker)\r\n    \r\n    'To allow or disable to multi select\r\n    fileExplorer.AllowMultiSelect = False\r\n    \r\n    With fileExplorer\r\n        If .Show = -1 Then 'Any file is selected\r\n            [filePath] = .SelectedItems.Item(1)\r\n        Else ' else dialog is cancelled\r\n            MsgBox \"You have cancelled the dialogue\"\r\n            [filePath] = \"\" ' when cancelled set blank as file path.\r\n        End If\r\n    End With\r\nerr:\r\n    Exit Sub\r\nEnd Sub\r\n<\/code><\/pre>\n

VBA to Select a Folder Path using Windows File Dialog<\/h2>\n

All you need to change is the type of the Dialog in the FileDialog Object. To explore the folders ONLy, you can provide the Dialog type as msoFileDialogFolderPicker<\/i><\/strong><\/p>\n

\r\nSub browseFolderPath()\r\n    On Error GoTo err\r\n    Dim fileExplorer As FileDialog\r\n    Set fileExplorer = Application.FileDialog(msoFileDialogFolderPicker)\r\n    \r\n    'To allow or disable to multi select\r\n    fileExplorer.AllowMultiSelect = False\r\n    \r\n    With fileExplorer\r\n        If .Show = -1 Then 'Any folder is selected\r\n            [folderPath] = .SelectedItems.Item(1)\r\n        Else ' else dialog is cancelled\r\n            MsgBox \"You have cancelled the dialogue\"\r\n            [folderPath] = \"\" ' when cancelled set blank as file path.\r\n        End If\r\n    End With\r\nerr:\r\n    Exit Sub\r\nEnd Sub\r\n<\/code><\/pre>\n

In Above code, I am storing the selected path in a named range [filePath] or [FolderPath]. If you have a text box to store the selected file path you can replace it with YourTextBoxName.Text.<\/p>\n

Download <\/h2>\n

Meanwhile over the weekend, you can download this workbook to play around with File explorer for selecting files or folders path.<\/i> Have a fantastic weekend ahead.<\/i><\/strong><\/p>\n

Download this, use it and do not forget to provide me your feedback by typing your comment here or sending en email or you can twit me <\/a> You can also share it with your friends colleagues.
\n

\n\"Download
\n<\/a> <\/p>\n<\/span>","protected":false},"excerpt":{"rendered":"

Dear friends, In my many Excel Tools, wherever there is a need for a file path to be entered from your local PC, I try to put a browse button to locate that file in your Windows PC through the windows file explorer window. It is the same window that you might have seen in […]<\/p>\n","protected":false},"author":45,"featured_media":0,"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,1675,1676],"tags":[],"class_list":["post-4811","post","type-post","status-publish","format-standard","hentry","category-macro","category-excel-macro-beginner","category-excel-macro-for-beginners","category-excel-tips"],"yoast_head":"\nVBA button to select File or Folder path using Windows FileDialog<\/title>\n<meta name=\"description\" content=\"Code to launch windows file dialog the select the file path. Select the folder path by using windows file explorer dialog. how to assign macro to an image. How to make nice buttons in excel\" \/>\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\/2016\/12\/how-to-open-file-explorer-in-vba\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows FileDialog to Select File or Folder Path in VBA\" \/>\n<meta property=\"og:description\" content=\"Code to launch windows file dialog the select the file path. Select the folder path by using windows file explorer dialog. how to assign macro to an image. How to make nice buttons in excel\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-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=\"2016-12-02T07:11:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-12T12:13:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/12\/liam-neeson-taken-will-find-you-1024x670.jpg\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/\"},\"author\":{\"name\":\"Vishwamitra Mishra\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"headline\":\"Windows FileDialog to Select File or Folder Path in VBA\",\"datePublished\":\"2016-12-02T07:11:41+00:00\",\"dateModified\":\"2022-08-12T12:13:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/\"},\"wordCount\":588,\"commentCount\":11,\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/12\/liam-neeson-taken-will-find-you-1024x494.png\",\"articleSection\":[\"Excel Macro\",\"Excel Macro Beginner\",\"Excel Macro Tutorial\",\"Excel Tips\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/\",\"name\":\"VBA button to select File or Folder path using Windows FileDialog\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/12\/liam-neeson-taken-will-find-you-1024x494.png\",\"datePublished\":\"2016-12-02T07:11:41+00:00\",\"dateModified\":\"2022-08-12T12:13:28+00:00\",\"description\":\"Code to launch windows file dialog the select the file path. Select the folder path by using windows file explorer dialog. how to assign macro to an image. How to make nice buttons in excel\",\"breadcrumb\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#primaryimage\",\"url\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/12\/liam-neeson-taken-will-find-you.png\",\"contentUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/12\/liam-neeson-taken-will-find-you.png\",\"width\":1099,\"height\":530,\"caption\":\"File Dialog - File Picker\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-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\":\"Windows FileDialog to Select File or Folder Path in 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":"VBA button to select File or Folder path using Windows FileDialog","description":"Code to launch windows file dialog the select the file path. Select the folder path by using windows file explorer dialog. how to assign macro to an image. How to make nice buttons in excel","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\/2016\/12\/how-to-open-file-explorer-in-vba\/","og_locale":"en_US","og_type":"article","og_title":"Windows FileDialog to Select File or Folder Path in VBA","og_description":"Code to launch windows file dialog the select the file path. Select the folder path by using windows file explorer dialog. how to assign macro to an image. How to make nice buttons in excel","og_url":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-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":"2016-12-02T07:11:41+00:00","article_modified_time":"2022-08-12T12:13:28+00:00","og_image":[{"url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/12\/liam-neeson-taken-will-find-you-1024x670.jpg"}],"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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#article","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/"},"author":{"name":"Vishwamitra Mishra","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"headline":"Windows FileDialog to Select File or Folder Path in VBA","datePublished":"2016-12-02T07:11:41+00:00","dateModified":"2022-08-12T12:13:28+00:00","mainEntityOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/"},"wordCount":588,"commentCount":11,"publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/12\/liam-neeson-taken-will-find-you-1024x494.png","articleSection":["Excel Macro","Excel Macro Beginner","Excel Macro Tutorial","Excel Tips"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/","url":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/","name":"VBA button to select File or Folder path using Windows FileDialog","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#primaryimage"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/12\/liam-neeson-taken-will-find-you-1024x494.png","datePublished":"2016-12-02T07:11:41+00:00","dateModified":"2022-08-12T12:13:28+00:00","description":"Code to launch windows file dialog the select the file path. Select the folder path by using windows file explorer dialog. how to assign macro to an image. How to make nice buttons in excel","breadcrumb":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-vba\/#primaryimage","url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/12\/liam-neeson-taken-will-find-you.png","contentUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/12\/liam-neeson-taken-will-find-you.png","width":1099,"height":530,"caption":"File Dialog - File Picker"},{"@type":"BreadcrumbList","@id":"https:\/\/vmlogger.com\/excel\/2016\/12\/how-to-open-file-explorer-in-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":"Windows FileDialog to Select File or Folder Path in 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\/4811"}],"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=4811"}],"version-history":[{"count":0,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/4811\/revisions"}],"wp:attachment":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media?parent=4811"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/categories?post=4811"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/tags?post=4811"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}