{"id":717,"date":"2019-07-10T20:34:18","date_gmt":"2019-07-10T20:34:18","guid":{"rendered":"http:\/\/www.vbastring.com\/blog\/?p=717"},"modified":"2019-07-10T20:39:21","modified_gmt":"2019-07-10T20:39:21","slug":"whats-the-use-of-macros-in-excel","status":"publish","type":"post","link":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/","title":{"rendered":"What&#8217;s The Use Of Macros In Excel?"},"content":{"rendered":"<p>Macros are used to make frequent tasks automated and easier. <\/p>\n<p>If you need to add a column to your Excel worksheet on a daily basis, just record a macro that adds a column.<\/p>\n<p>Or, you may need to update the sales reports you receive from the various locations your company does business in.  So you&#8217;ll use a macro to update the emailed worksheet with a header before submitting it to management.<\/p>\n<p>Here is how that macro would be generated:<\/p>\n<p>You can create your Excel file as a &#8220;xlsx&#8221; (Excel file that doesn&#8217;t contain macros), and then save it as a &#8220;xlsm&#8221;.<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/use_of_macros_in_excel_save_as_xlsm-1.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png?resize=625%2C214\" alt=\"\" width=\"625\" height=\"214\" class=\"aligncenter size-large wp-image-721\" \/><\/a><\/p>\n<p>Tip: You are better off sending off the &#8220;xlsm&#8221; file instead of the &#8220;xlsx&#8221; file because you know ahead of time that the file is going to contain the &#8220;Header&#8221; macro.<\/p>\n<p><strong>To create your &#8220;Header&#8221; macro you will do this:<\/strong><\/p>\n<p>Click on your &#8220;Developer&#8221; tab (See the <a href=\"http:\/\/www.vbastring.com\/blog\/about-me\/\" rel=\"noopener noreferrer\" target=\"_blank\">http:\/\/www.vbastring.com\/blog\/about-me\/<\/a> if you need help) -> &#8220;Record Macro&#8221; -> then change the name of &#8220;Macro1&#8221; to something else like &#8220;Header&#8221;<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/record_macro.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/record_macro-1024x530.png?resize=625%2C323\" alt=\"\" width=\"625\" height=\"323\" class=\"aligncenter size-large wp-image-723\" \/><\/a><\/p>\n<p><strong>You&#8217;ll make this:<\/strong><\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/record_macro2.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/record_macro2-1024x428.png?resize=625%2C261\" alt=\"\" width=\"625\" height=\"261\" class=\"aligncenter size-large wp-image-726\" \/><\/a><\/p>\n<p><strong>Look like this:<\/strong><\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/record_macro3-1.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/record_macro3-1.png?resize=706%2C587\" alt=\"\" width=\"706\" height=\"587\" class=\"aligncenter size-full wp-image-727\" \/><\/a><\/p>\n<p>When you are finished doing your formatting, click &#8220;Stop Recording&#8221;<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/record_macro3.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/record_macro3.png?resize=706%2C587\" alt=\"\" width=\"706\" height=\"587\" class=\"aligncenter size-full wp-image-724\" \/><\/a><\/p>\n<p>Here is the macro code you just recorded:<\/p>\n<pre class=\"lang:vb decode:true \" >Sub Header()\r\n'\r\n' Header Macro\r\n'\r\n\r\n'\r\n    Rows(\"1:5\").Select\r\n    Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove\r\n    Range(\"A1\").Select\r\n    ActiveCell.FormulaR1C1 = \"International Motors\"\r\n    Range(\"A2\").Select\r\n    ActiveCell.FormulaR1C1 = \"Budget Report\"\r\n    Range(\"A3\").Select\r\n    ActiveWindow.SmallScroll Down:=-3\r\n    Range(\"A1:D1\").Select\r\n    Selection.Font.Size = 10\r\n    Selection.Font.Size = 9\r\n    Selection.Font.Size = 8\r\n    Selection.Font.Size = 9\r\n    Selection.Font.Size = 10\r\n    Selection.Font.Size = 11\r\n    Selection.Font.Size = 12\r\n    Selection.Font.Size = 14\r\n    Selection.Font.Size = 16\r\n    Selection.Font.Size = 18\r\n    Selection.Font.Size = 20\r\n    Selection.Font.Size = 22\r\n    Selection.Font.Size = 24\r\n    Selection.Font.Size = 26\r\n    Selection.Font.Size = 24\r\n    Selection.Font.Italic = True\r\n    With Selection.Font\r\n        .Name = \"Times New Roman\"\r\n        .Size = 24\r\n        .Strikethrough = False\r\n        .Superscript = False\r\n        .Subscript = False\r\n        .OutlineFont = False\r\n        .Shadow = False\r\n        .Underline = xlUnderlineStyleNone\r\n        .ThemeColor = xlThemeColorLight1\r\n        .TintAndShade = 0\r\n        .ThemeFont = xlThemeFontNone\r\n    End With\r\n    Selection.Font.Bold = True\r\n    With Selection\r\n        .HorizontalAlignment = xlGeneral\r\n        .VerticalAlignment = xlCenter\r\n        .WrapText = False\r\n        .Orientation = 0\r\n        .AddIndent = False\r\n        .IndentLevel = 0\r\n        .ShrinkToFit = False\r\n        .ReadingOrder = xlContext\r\n        .MergeCells = False\r\n    End With\r\n    With Selection\r\n        .HorizontalAlignment = xlCenter\r\n        .VerticalAlignment = xlCenter\r\n        .WrapText = False\r\n        .Orientation = 0\r\n        .AddIndent = False\r\n        .IndentLevel = 0\r\n        .ShrinkToFit = False\r\n        .ReadingOrder = xlContext\r\n        .MergeCells = False\r\n    End With\r\n    Selection.Merge\r\n    Range(\"A2:D2\").Select\r\n    With Selection\r\n        .HorizontalAlignment = xlCenter\r\n        .VerticalAlignment = xlBottom\r\n        .WrapText = False\r\n        .Orientation = 0\r\n        .AddIndent = False\r\n        .IndentLevel = 0\r\n        .ShrinkToFit = False\r\n        .ReadingOrder = xlContext\r\n        .MergeCells = False\r\n    End With\r\n    Selection.Merge\r\n    Selection.Font.Size = 12\r\n    Selection.Font.Size = 14\r\n    Selection.Font.Size = 16\r\n    Selection.Font.Size = 18\r\n    Selection.Font.Italic = True\r\n    With Selection.Font\r\n        .Name = \"Times New Roman\"\r\n        .Size = 18\r\n        .Strikethrough = False\r\n        .Superscript = False\r\n        .Subscript = False\r\n        .OutlineFont = False\r\n        .Shadow = False\r\n        .Underline = xlUnderlineStyleNone\r\n        .ThemeColor = xlThemeColorLight1\r\n        .TintAndShade = 0\r\n        .ThemeFont = xlThemeFontNone\r\n    End With\r\n    Selection.Font.Bold = True\r\n    Range(\"A1:D1\").Select\r\nEnd Sub\r\n<\/pre>\n<p>*********** When you are ready, delete the top 5 rows, and just send out the new xlsm file containing the macro.<\/p>\n<p><strong>Then when they send it back at the end of the month you just need to run the new &#8220;Header&#8221; macro like in the image below:<\/strong><\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/record_macro4.png\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/record_macro4-1024x566.png?resize=625%2C345\" alt=\"\" width=\"625\" height=\"345\" class=\"aligncenter size-large wp-image-729\" \/><\/a><\/p>\n<p>Sure macros can save time by automating repetitive tasks, but the problem is that most people can&#8217;t read the code they just recorded.  So if they want to change the macro a little bit, or delete all the extraneous keystrokes (because the macro recorder, records everything!), <u>they have to use the macro recorder to record the macro all over again<\/u>.   <\/p>\n<p>The point of this site is to help tutor you in the &#8220;way&#8221; of VBA, and help you <strong>understand <\/strong>what you just recorded.<\/p>\n<p><strong>To start learning Excel VBA click here:<\/strong><\/p>\n<p><a href=\"http:\/\/www.vbastring.com\/blog\/excel-vba-tutorial-1\/\" rel=\"noopener noreferrer\" target=\"_blank\">http:\/\/www.vbastring.com\/blog\/excel-vba-tutorial-1\/<\/a><\/p>\n<p>Also I encourage you to <a href=\"http:\/\/www.vbastring.com\/excel-vba-training-videos\/\" rel=\"noopener noreferrer\" target=\"_blank\">1st get the videos<\/a>, and sign up for my notification list.<\/p>\n<p>Let me know if you have any questions.<\/p>\n<p>****************************************************<\/p>\n<table border=\"1\" width=\"100%\">\n<tr>\n<td align=\"middle\">\n<div class=\"AW-Form-1094354588\"><\/div>\n<p><script type=\"text\/javascript\">(function(d, s, id) {\n    var js, fjs = d.getElementsByTagName(s)[0];\n    if (d.getElementById(id)) return;\n    js = d.createElement(s); js.id = id;\n    js.src = \"\/\/forms.aweber.com\/form\/88\/1094354588.js\";\n    fjs.parentNode.insertBefore(js, fjs);\n    }(document, \"script\", \"aweber-wjs-kkrwj13ov\"));\n<\/script>\n<\/td>\n<\/tr>\n<\/table>\n","protected":false},"excerpt":{"rendered":"<p>Macros are used to make frequent tasks automated and easier. If you need to add a column to your Excel worksheet on a daily basis, just record a macro that adds a column. Or, you may need to update the sales reports you receive from the various locations your company does business in. So you&#8217;ll [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","om_disable_all_campaigns":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-717","post","type-post","status-publish","format-standard","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What&#039;s The Use Of Macros In Excel? - My Blog<\/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:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What&#039;s The Use Of Macros In Excel? - My Blog\" \/>\n<meta property=\"og:description\" content=\"Macros are used to make frequent tasks automated and easier. If you need to add a column to your Excel worksheet on a daily basis, just record a macro that adds a column. Or, you may need to update the sales reports you receive from the various locations your company does business in. So you&#8217;ll [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/\" \/>\n<meta property=\"og:site_name\" content=\"My Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-10T20:34:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-07-10T20:39:21+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"headline\":\"What&#8217;s The Use Of Macros In Excel?\",\"datePublished\":\"2019-07-10T20:34:18+00:00\",\"dateModified\":\"2019-07-10T20:39:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/\"},\"wordCount\":374,\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/\",\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/\",\"name\":\"What's The Use Of Macros In Excel? - My Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png\",\"datePublished\":\"2019-07-10T20:34:18+00:00\",\"dateModified\":\"2019-07-10T20:39:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png\",\"contentUrl\":\"http:\\\/\\\/www.vbastring.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/2019\\\/07\\\/10\\\/whats-the-use-of-macros-in-excel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What&#8217;s The Use Of Macros In Excel?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/\",\"name\":\"My Blog\",\"description\":\"My WordPress Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/#\\\/schema\\\/person\\\/e1de0b30e98940381697872449c341f5\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/vbastring.com\\\/blog\"],\"url\":\"https:\\\/\\\/vbastring.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What's The Use Of Macros In Excel? - My Blog","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:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/","og_locale":"en_US","og_type":"article","og_title":"What's The Use Of Macros In Excel? - My Blog","og_description":"Macros are used to make frequent tasks automated and easier. If you need to add a column to your Excel worksheet on a daily basis, just record a macro that adds a column. Or, you may need to update the sales reports you receive from the various locations your company does business in. So you&#8217;ll [&hellip;]","og_url":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/","og_site_name":"My Blog","article_published_time":"2019-07-10T20:34:18+00:00","article_modified_time":"2019-07-10T20:39:21+00:00","og_image":[{"url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/#article","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/"},"author":{"name":"admin","@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"headline":"What&#8217;s The Use Of Macros In Excel?","datePublished":"2019-07-10T20:34:18+00:00","dateModified":"2019-07-10T20:39:21+00:00","mainEntityOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/"},"wordCount":374,"image":{"@id":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/","url":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/","name":"What's The Use Of Macros In Excel? - My Blog","isPartOf":{"@id":"https:\/\/vbastring.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/#primaryimage"},"image":{"@id":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png","datePublished":"2019-07-10T20:34:18+00:00","dateModified":"2019-07-10T20:39:21+00:00","author":{"@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5"},"breadcrumb":{"@id":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/#primaryimage","url":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png","contentUrl":"http:\/\/www.vbastring.com\/blog\/wp-content\/uploads\/2019\/07\/use_of_macros_in_excel_save_as_xlsm-1-1024x350.png"},{"@type":"BreadcrumbList","@id":"https:\/\/vbastring.com\/blog\/2019\/07\/10\/whats-the-use-of-macros-in-excel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vbastring.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What&#8217;s The Use Of Macros In Excel?"}]},{"@type":"WebSite","@id":"https:\/\/vbastring.com\/blog\/#website","url":"https:\/\/vbastring.com\/blog\/","name":"My Blog","description":"My WordPress Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vbastring.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/vbastring.com\/blog\/#\/schema\/person\/e1de0b30e98940381697872449c341f5","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b2feaa698a4bd91b409df1beb5ff6acc2d7842d4f78543d413ebd468bc0171af?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/vbastring.com\/blog"],"url":"https:\/\/vbastring.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/717","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/comments?post=717"}],"version-history":[{"count":5,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/717\/revisions"}],"predecessor-version":[{"id":739,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/posts\/717\/revisions\/739"}],"wp:attachment":[{"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/media?parent=717"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/categories?post=717"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vbastring.com\/blog\/wp-json\/wp\/v2\/tags?post=717"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}