{"id":12199,"date":"2014-06-03T15:58:15","date_gmt":"2014-06-03T15:58:15","guid":{"rendered":"http:\/\/www.learnexcelmacro.com\/wp\/?p=3774"},"modified":"2018-03-21T21:08:56","modified_gmt":"2018-03-21T21:08:56","slug":"read-write-document-properties-excel-macro","status":"publish","type":"post","link":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/","title":{"rendered":"Read and Write Document Properties of an excel Document – VBA"},"content":{"rendered":"

In this Article we will learn how to get document property of an excel workbook using Excel VBA. Before I jump in to the VBA code let’s have a look Where to see document properties in Excel Document? <\/strong><\/p>\n

How to see document property of an Excel document<\/h2>\n

Follow the below steps to see the properties for the document:<\/p>\n

Step 1.<\/strong> Click on Office Button in Excel 2007
\nStep 2.<\/strong> Roll over Prepare Option<\/strong> available as shown in the below picture:
\nStep 3.<\/strong> Now click on Properties Option visible in Right hand side
\n\"Excel-Document-Properties\"
\nStep 4.<\/strong> Now you can see the document property below the Ribbon as shown in the below picture:
\n\"Excel-Document-Properties\"
\n 
\nHere you can read the document property which is already updated. You can write the property here and save it. It means you can read and write a document property from the above screen.<\/p>\n

\nNow you know how to read and write the properties of an excel document. Now I will show you how to do the same activity using VBA code. Using Workbook.BuiltinDocumentProperties<\/strong> property user can read and write the document property of an excel workbook.\n<\/p><\/blockquote>\n

What is Workbook.BuiltinDocumentProperties ?<\/i><\/h3>\n

This is a Microsoft Excel Workbook property which allows users to read and write the document property. This returns a document properties object which has a collection of all the properties of the document. <\/p>\n

1. How to Read Document Property using Workbook.BuiltinDocumentProperties<\/i><\/h3>\n

Use the below vba syntax to get the document property of the excel document:<\/p>\n

Syntax<\/h3>\n

prop1 = ThisWorkbook.BuiltinDocumentProperties(“<Prop1Name>”).value<\/i><\/p>\n

Where:<\/h3>\n

Prop1 :<\/strong> is a variable where you want to store the value of a property
\nProp1Name :<\/strong> This is the Name of the property by which it is referred in the returned collection of properties<\/p>\n

Example 1: Get the Author Name from the document property<\/h2>\n

Name of the item where Author Name property value is stored is author<\/strong>. Therefore to get the author name from the document property vba code will look like this:<\/p>\n

\r\nFunction Get_Author_Name()\r\n    Dim AuthorName As String\r\n    AuthorName = ThisWorkbook.BuiltinDocumentProperties(\"author\").Value\r\nEnd Function\r\n<\/code><\/pre>\n

Example 2: Few more frequently used properties<\/h2>\n
\r\nFunction Get_Document_Properties()\r\n    Dim LastAuthorName\r\n    Dim CreatedOn\r\n    Dim LastSavedOn\r\n    Dim Title\r\n    Dim Comments\r\n    'To retrieve the last Author of the File\r\n    LastAuthorName = ThisWorkbook.BuiltinDocumentProperties(\"last author\").Value\r\n    'To get the created on date and time\r\n    CreatedOn = ThisWorkbook.BuiltinDocumentProperties(\"creation date\").Value\r\n    'to get the date and time when last time document was saved\r\n    LastSavedOn = ThisWorkbook.BuiltinDocumentProperties(\"last save time\").Value\r\n    'to get the title of document updated in document property\r\n    Title = ThisWorkbook.BuiltinDocumentProperties(\"title\").Value\r\n    'to get the Author's comment added in document proprty\r\n    Comments = ThisWorkbook.BuiltinDocumentProperties(\"title\").Value\r\nEnd Function\r\n<\/code><\/pre>\n

Example 3: VBA code to display all the Properties Name its values<\/h2>\n

If you want to display all the properties of an Excel Workbook you can use For Loop<\/i> to traverse all the items of the BuiltinDocumentProperties collection. Below is the VBA code which will list all the proprties Name and corresponding values in your excel sheet.<\/p>\n

\r\nFunction list_All_Properties()\r\nDim iRow As Integer\r\niRow = 1\r\nOn Error Resume Next\r\n'below loop will traverse for all items of this collection of properties\r\nFor Each prop In ThisWorkbook.BuiltinDocumentProperties\r\n    Range(\"A\" & i).Value = prop.Name 'Property Name like \"Author\" etc\r\n    Range(\"B\" & i).Value = prop.Value 'Property value like Author name updated in proprty\r\n    iRow = iRow + 1\r\nNext\r\nEnd Function\r\n<\/code><\/pre>\n

2. How to Write Document Property using Workbook.BuiltinDocumentProperties<\/i><\/h3>\n

This is very simple. All you need to do is reverse the operation. Now you need to assign a value to the property. Hence the VBA code synatx will look like this:<\/p>\n

Syntax<\/h3>\n

ThisWorkbook.BuiltinDocumentProperties(“<Prop1Name>”).value = prop1<\/i><\/p>\n

Where:<\/h3>\n

Prop1 :<\/strong> is the value of a property (Like Author Name = Vishwa)
\nProp1Name :<\/strong> This is the Name of the property which you want to update with the above value<\/p>\n

Example 1: Set the Author Name in document property using VBA<\/h2>\n

Name of the item where Author Name property value is stored is author<\/strong>. Therefore to update the author name in the document property vba code will look like this:<\/p>\n

\r\nFunction Update_Author_Name()\r\n    Dim AuthorName As String\r\n    AuthorName = \"Vishwa\"\r\n    ThisWorkbook.BuiltinDocumentProperties(\"author\").Value = AuthorName\r\nEnd Function\r\n<\/code><\/pre>\n

Example 2: Few more frequently used properties<\/h2>\n
\r\nFunction Update_Document_Properties()\r\n    Dim Subject\r\n    Dim Status\r\n    Dim Category\r\n    Dim Title\r\n    Dim Comments\r\n    'Assign property value to the variables\r\n    Subject = \"Subject of the Document\"\r\n    Title = \"My Title\"\r\n    Comments = \"Author's comment\"\r\n    Status = \"Complete\"\r\n    Category = \"Finance\"\r\n    'To update the title of document in document property\r\n    ThisWorkbook.BuiltinDocumentProperties(\"title\").Value = Title\r\n    'to update the Author's comment in document proprty\r\n    ThisWorkbook.BuiltinDocumentProperties(\"comments\").Value = Comments\r\n    'to update Subject in document proprty\r\n    ThisWorkbook.BuiltinDocumentProperties(\"subject\").Value = Subject\r\n    'to update the status in document proprty\r\n    ThisWorkbook.BuiltinDocumentProperties(\"content status\").Value = Status\r\n    'to update the Category in document proprty\r\n    ThisWorkbook.BuiltinDocumentProperties(\"category\").Value = Category\r\nEnd Function\r\n<\/code><\/pre>\n

After running the above code all the values will be set to the corresponding property field in document property. refer the below picture:
\n\"Properties-Updated\"
\n <\/p>\n

If you have any doubt or suggestion do let me know through comment or on my facebook fan page<\/a> <\/h2>\n

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

In this Article we will learn how to get document property of an excel workbook using Excel VBA. Before I jump in to the VBA code let’s have a look Where to see document properties in Excel Document? How to see document property of an Excel document Follow the below steps to see the properties […]<\/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":[1673,1246,1676,1678,1682],"tags":[],"class_list":["post-12199","post","type-post","status-publish","format-standard","hentry","category-excel-functions","category-macro","category-excel-tips","category-interesting-vba-functions","category-popular-articles"],"yoast_head":"\nRead and Write Document Properties of an excel Document - VBA - Let's excel in Excel<\/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:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Read and Write Document Properties of an excel Document - VBA\" \/>\n<meta property=\"og:description\" content=\"In this Article we will learn how to get document property of an excel workbook using Excel VBA. Before I jump in to the VBA code let’s have a look Where to see document properties in Excel Document? How to see document property of an Excel document Follow the below steps to see the properties […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/\" \/>\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=\"2014-06-03T15:58:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-03-21T21:08:56+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/learnexcelmacro.com\/wp\/wp-content\/uploads\/sites\/11\/2014\/06\/Excel-Document-Properties.png\" \/>\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\/2014\/06\/read-write-document-properties-excel-macro\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/\"},\"author\":{\"name\":\"Vishwamitra Mishra\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"headline\":\"Read and Write Document Properties of an excel Document – VBA\",\"datePublished\":\"2014-06-03T15:58:15+00:00\",\"dateModified\":\"2018-03-21T21:08:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/\"},\"wordCount\":567,\"commentCount\":11,\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/06\/Excel-Document-Properties.png\",\"articleSection\":[\"Excel Functions\",\"Excel Macro\",\"Excel Tips\",\"Interesting VBA Functions\",\"Popular Articles\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/\",\"name\":\"Read and Write Document Properties of an excel Document - VBA - Let's excel in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/06\/Excel-Document-Properties.png\",\"datePublished\":\"2014-06-03T15:58:15+00:00\",\"dateModified\":\"2018-03-21T21:08:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#primaryimage\",\"url\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/06\/Excel-Document-Properties.png\",\"contentUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/06\/Excel-Document-Properties.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/vmlogger.com\/excel\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel Functions\",\"item\":\"https:\/\/vmlogger.com\/excel\/excel-functions\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Read and Write Document Properties of an excel Document – 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":"Read and Write Document Properties of an excel Document - VBA - Let's excel 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\/2014\/06\/read-write-document-properties-excel-macro\/","og_locale":"en_US","og_type":"article","og_title":"Read and Write Document Properties of an excel Document - VBA","og_description":"In this Article we will learn how to get document property of an excel workbook using Excel VBA. Before I jump in to the VBA code let’s have a look Where to see document properties in Excel Document? How to see document property of an Excel document Follow the below steps to see the properties […]","og_url":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/","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":"2014-06-03T15:58:15+00:00","article_modified_time":"2018-03-21T21:08:56+00:00","og_image":[{"url":"http:\/\/learnexcelmacro.com\/wp\/wp-content\/uploads\/sites\/11\/2014\/06\/Excel-Document-Properties.png"}],"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\/2014\/06\/read-write-document-properties-excel-macro\/#article","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/"},"author":{"name":"Vishwamitra Mishra","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"headline":"Read and Write Document Properties of an excel Document – VBA","datePublished":"2014-06-03T15:58:15+00:00","dateModified":"2018-03-21T21:08:56+00:00","mainEntityOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/"},"wordCount":567,"commentCount":11,"publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/06\/Excel-Document-Properties.png","articleSection":["Excel Functions","Excel Macro","Excel Tips","Interesting VBA Functions","Popular Articles"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/","url":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/","name":"Read and Write Document Properties of an excel Document - VBA - Let's excel in Excel","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#primaryimage"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/06\/Excel-Document-Properties.png","datePublished":"2014-06-03T15:58:15+00:00","dateModified":"2018-03-21T21:08:56+00:00","breadcrumb":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#primaryimage","url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/06\/Excel-Document-Properties.png","contentUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/06\/Excel-Document-Properties.png"},{"@type":"BreadcrumbList","@id":"https:\/\/vmlogger.com\/excel\/2014\/06\/read-write-document-properties-excel-macro\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vmlogger.com\/excel\/"},{"@type":"ListItem","position":2,"name":"Excel Functions","item":"https:\/\/vmlogger.com\/excel\/excel-functions\/"},{"@type":"ListItem","position":3,"name":"Read and Write Document Properties of an excel Document – 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\/12199"}],"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=12199"}],"version-history":[{"count":0,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/12199\/revisions"}],"wp:attachment":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media?parent=12199"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/categories?post=12199"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/tags?post=12199"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}