{"id":244859,"date":"2024-12-04T12:50:56","date_gmt":"2024-12-04T12:50:56","guid":{"rendered":"https:\/\/vmlogger.com\/excel\/?p=244859"},"modified":"2024-12-04T12:50:56","modified_gmt":"2024-12-04T12:50:56","slug":"convert-pdf-to-excel-vba-macro","status":"publish","type":"post","link":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/","title":{"rendered":"Convert PDF Tables to Excel with VBA | Step-by-Step Guide"},"content":{"rendered":"


\n
\n
\n
\n
\n
\n
\n
\n Convert PDF Tables to Excel with VBA | Step-by-Step Guide<\/title><br \/>\n<\/head><br \/>\n<body><\/p>\n<h1>How to Convert PDF Tables to Excel Using Excel VBA (Macros)<\/h1>\n<p>Extracting data from PDF tables into Excel can be tedious, but with Excel VBA (macros), you can automate this process and save time. This guide will walk you through the steps to achieve this seamlessly.<\/p>\n<h2>Why Use VBA for PDF to Excel Conversion?<\/h2>\n<ul>\n<li><strong>Efficiency<\/strong>: Automates repetitive tasks.<\/li>\n<li><strong>Customization<\/strong>: Tailors the process to your needs.<\/li>\n<li><strong>Batch Processing<\/strong>: Easily convert multiple PDFs in one go.<\/li>\n<\/ul>\n<h2>Step 1: Prerequisites<\/h2>\n<p>Before you start, ensure the following:<\/p>\n<ul>\n<li>Excel installed (Excel 2016 or later).<\/li>\n<li>Adobe Acrobat installed.<\/li>\n<li>Enable the Developer Tab in Excel: Go to <em>File > Options > Customize Ribbon<\/em> and check “Developer”.<\/li>\n<\/ul>\n<h2>Step 2: Set Up Your Excel Workbook<\/h2>\n<ol>\n<li>Open Excel and press <code>Alt + F11<\/code> to open the VBA editor.<\/li>\n<li>In the editor, go to <strong>Insert > Module<\/strong> to create a new module.<\/li>\n<li>Paste the VBA code provided in the next section into the module.<\/li>\n<\/ol>\n<h2>Step 3: VBA Code to Extract PDF Tables<\/h2>\n<p>Copy and paste the following code into your VBA module:<\/p>\n<pre>\r\n<code class=\"language-vbnet\">\r\nSub ConvertPDFToExcel()\r\n Dim AcroApp As Object\r\n Dim AcroDoc As Object\r\n Dim AcroPage As Object\r\n Dim i As Integer\r\n Dim PageText As String\r\n Dim ExcelRow As Long\r\n Dim ws As Worksheet\r\n \r\n ' Initialize Adobe Acrobat application\r\n On Error Resume Next\r\n Set AcroApp = CreateObject(\"AcroExch.App\")\r\n If AcroApp Is Nothing Then\r\n MsgBox \"Adobe Acrobat is not installed or not properly configured.\", vbCritical\r\n Exit Sub\r\n End If\r\n On Error GoTo 0\r\n\r\n ' Open PDF file\r\n Dim PDFPath As String\r\n PDFPath = Application.GetOpenFilename(\"PDF Files (*.pdf), *.pdf\")\r\n If PDFPath = \"False\" Then Exit Sub\r\n \r\n Set AcroDoc = CreateObject(\"AcroExch.PDDoc\")\r\n If Not AcroDoc.Open(PDFPath) Then\r\n MsgBox \"Failed to open PDF file.\", vbCritical\r\n Exit Sub\r\n End If\r\n\r\n ' Set up Excel sheet\r\n Set ws = ThisWorkbook.Sheets(1)\r\n ExcelRow = 1\r\n\r\n ' Loop through each page of the PDF\r\n For i = 0 To AcroDoc.GetNumPages - 1\r\n Set AcroPage = AcroDoc.AcquirePage(i)\r\n PageText = AcroPage.GetText()\r\n \r\n ' Split page text into rows and columns (simple delimiter-based parsing)\r\n Dim Lines() As String\r\n Lines = Split(PageText, vbCrLf)\r\n \r\n Dim j As Integer\r\n Dim Columns() As String\r\n For j = LBound(Lines) To UBound(Lines)\r\n Columns = Split(Lines(j), \" \")\r\n Dim k As Integer\r\n For k = LBound(Columns) To UBound(Columns)\r\n ws.Cells(ExcelRow, k + 1).Value = Columns(k)\r\n Next k\r\n ExcelRow = ExcelRow + 1\r\n Next j\r\n Next i\r\n\r\n ' Clean up\r\n AcroDoc.Close\r\n AcroApp.Exit\r\n Set AcroApp = Nothing\r\n Set AcroDoc = Nothing\r\n MsgBox \"PDF tables have been successfully extracted!\", vbInformation\r\nEnd Sub\r\n<\/code><\/pre>\n<h2>Limitations<\/h2>\n<ul>\n<li>Requires Adobe Acrobat.<\/li>\n<li>Handles only text-based PDFs (not images).<\/li>\n<li>Basic parsing; may require adjustments for complex tables.<\/li>\n<\/ul>\n<h2>Advanced Tips<\/h2>\n<ul>\n<li><strong>Batch Processing<\/strong>: Modify the code to process all PDF files in a folder.<\/li>\n<li><strong>Improved Parsing<\/strong>: Use libraries like iTextSharp for advanced table handling.<\/li>\n<li><strong>Error Handling<\/strong>: Add checks for corrupted files.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>With this VBA script, you can automate the tedious task of converting PDF tables to Excel, saving time and effort. This tool is invaluable for anyone who frequently handles PDF-to-Excel conversions. Happy coding!<\/p>\n<h2>FAQs<\/h2>\n<ul>\n<li><strong>How do I convert a PDF table to Excel using VBA?<\/strong> You can use the provided VBA macro to automate the process by extracting tables into Excel sheets.<\/li>\n<li><strong>Can I convert multiple PDFs to Excel?<\/strong> Yes, the script can be modified to loop through a folder of PDFs.<\/li>\n<\/ul>\n<p><script type=\"application\/ld+json\">\n{\n \"@context\": \"https:\/\/schema.org\",\n \"@type\": \"FAQPage\",\n \"mainEntity\": [\n {\n \"@type\": \"Question\",\n \"name\": \"How do I convert a PDF table to Excel using VBA?\",\n \"acceptedAnswer\": {\n \"@type\": \"Answer\",\n \"text\": \"You can use an Excel VBA macro to automate the process of extracting tables from a PDF. This involves setting up Adobe Acrobat's COM interface and running a VBA script to process the data.\"\n }\n },\n {\n \"@type\": \"Question\",\n \"name\": \"Can I convert multiple PDF files to Excel at once?\",\n \"acceptedAnswer\": {\n \"@type\": \"Answer\",\n \"text\": \"Yes, you can modify the VBA code to loop through a folder of PDF files and extract their data into Excel automatically.\"\n }\n }\n ]\n}\n<\/script><\/p>\n<p><\/body><br \/>\n<\/html><\/p>\n<span class=\"et_bloom_bottom_trigger\"><\/span>","protected":false},"excerpt":{"rendered":"<p>Convert PDF Tables to Excel with VBA | Step-by-Step Guide How to Convert PDF Tables to Excel Using Excel VBA (Macros) Extracting data from PDF tables into Excel can be tedious, but with Excel VBA (macros), you can automate this process and save time. This guide will walk you through the steps to achieve this […]<\/p>\n","protected":false},"author":45,"featured_media":244862,"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,1676,1682],"tags":[],"class_list":["post-244859","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-excel-functions","category-macro","category-excel-macro-beginner","category-excel-tips","category-popular-articles"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.5 (Yoast SEO v23.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Convert PDF Tables to Excel with VBA | Step-by-Step Guide - Let's excel in Excel<\/title>\n<meta name=\"description\" content=\"Learn how to convert PDF tables to Excel using VBA (macros). A step-by-step guide for automating PDF-to-Excel conversions. Ideal for beginners!\" \/>\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\/2024\/12\/convert-pdf-to-excel-vba-macro\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Convert PDF Tables to Excel with VBA | Step-by-Step Guide\" \/>\n<meta property=\"og:description\" content=\"Learn how to convert PDF tables to Excel using VBA (macros). A step-by-step guide for automating PDF-to-Excel conversions. Ideal for beginners!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-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=\"2024-12-04T12:50:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2024\/12\/convert-pdf-to-excel.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2240\" \/>\n\t<meta property=\"og:image:height\" content=\"1260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/\"},\"author\":{\"name\":\"Vishwamitra Mishra\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"headline\":\"Convert PDF Tables to Excel with VBA | Step-by-Step Guide\",\"datePublished\":\"2024-12-04T12:50:56+00:00\",\"dateModified\":\"2024-12-04T12:50:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/\"},\"wordCount\":315,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2024\/12\/convert-pdf-to-excel.png\",\"articleSection\":[\"Excel Functions\",\"Excel Macro\",\"Excel Macro Beginner\",\"Excel Tips\",\"Popular Articles\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/\",\"name\":\"Convert PDF Tables to Excel with VBA | Step-by-Step Guide - Let's excel in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2024\/12\/convert-pdf-to-excel.png\",\"datePublished\":\"2024-12-04T12:50:56+00:00\",\"dateModified\":\"2024-12-04T12:50:56+00:00\",\"description\":\"Learn how to convert PDF tables to Excel using VBA (macros). A step-by-step guide for automating PDF-to-Excel conversions. Ideal for beginners!\",\"breadcrumb\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#primaryimage\",\"url\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2024\/12\/convert-pdf-to-excel.png\",\"contentUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2024\/12\/convert-pdf-to-excel.png\",\"width\":2240,\"height\":1260,\"caption\":\"Extract PDF data to Excel\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-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\":\"Convert PDF Tables to Excel with VBA | Step-by-Step Guide\"}]},{\"@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":"Convert PDF Tables to Excel with VBA | Step-by-Step Guide - Let's excel in Excel","description":"Learn how to convert PDF tables to Excel using VBA (macros). A step-by-step guide for automating PDF-to-Excel conversions. Ideal for beginners!","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\/2024\/12\/convert-pdf-to-excel-vba-macro\/","og_locale":"en_US","og_type":"article","og_title":"Convert PDF Tables to Excel with VBA | Step-by-Step Guide","og_description":"Learn how to convert PDF tables to Excel using VBA (macros). A step-by-step guide for automating PDF-to-Excel conversions. Ideal for beginners!","og_url":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-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":"2024-12-04T12:50:56+00:00","og_image":[{"width":2240,"height":1260,"url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2024\/12\/convert-pdf-to-excel.png","type":"image\/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":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#article","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/"},"author":{"name":"Vishwamitra Mishra","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"headline":"Convert PDF Tables to Excel with VBA | Step-by-Step Guide","datePublished":"2024-12-04T12:50:56+00:00","dateModified":"2024-12-04T12:50:56+00:00","mainEntityOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/"},"wordCount":315,"commentCount":0,"publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2024\/12\/convert-pdf-to-excel.png","articleSection":["Excel Functions","Excel Macro","Excel Macro Beginner","Excel Tips","Popular Articles"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/","url":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/","name":"Convert PDF Tables to Excel with VBA | Step-by-Step Guide - Let's excel in Excel","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#primaryimage"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2024\/12\/convert-pdf-to-excel.png","datePublished":"2024-12-04T12:50:56+00:00","dateModified":"2024-12-04T12:50:56+00:00","description":"Learn how to convert PDF tables to Excel using VBA (macros). A step-by-step guide for automating PDF-to-Excel conversions. Ideal for beginners!","breadcrumb":{"@id":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-macro\/#primaryimage","url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2024\/12\/convert-pdf-to-excel.png","contentUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2024\/12\/convert-pdf-to-excel.png","width":2240,"height":1260,"caption":"Extract PDF data to Excel"},{"@type":"BreadcrumbList","@id":"https:\/\/vmlogger.com\/excel\/2024\/12\/convert-pdf-to-excel-vba-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":"Convert PDF Tables to Excel with VBA | Step-by-Step Guide"}]},{"@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\/244859"}],"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=244859"}],"version-history":[{"count":0,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/244859\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media\/244862"}],"wp:attachment":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media?parent=244859"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/categories?post=244859"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/tags?post=244859"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}