{"id":4755,"date":"2016-11-13T17:13:47","date_gmt":"2016-11-13T17:13:47","guid":{"rendered":"http:\/\/www.learnexcelmacro.com\/wp\/?p=4755"},"modified":"2017-07-17T08:57:13","modified_gmt":"2017-07-17T08:57:13","slug":"send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail","status":"publish","type":"post","link":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/","title":{"rendered":"Send Image of a Range from Excel embedded in Mail [Inline Image in Mail]"},"content":{"rendered":"

Dear Friends,<\/p>\n

Couple of my friends asked me about this like how can I send screenshot of a particular range area of my excel sheet embedded in my HTML mail with other texts in my email. I also got this question on Microsoft Excel forum<\/a> where I answered that question by providing a piece of code. Though there were some other ideas and codes which was shared by Deepak Panchal (MSFT CSG)<\/a>.<\/p>\n

\"send<\/a>

send range as inline image<\/p><\/div>\n

Code which will do the magic<\/h1>\n
\r\nSub SendHTML_And_RangeImage_As_Body_UsingOutlook()\r\n    Dim olApp As Object\r\n    Dim NewMail As Object\r\n    Dim ChartName As String\r\n    Dim imgPath As String\r\n    \r\n    On Error GoTo err\r\n    \r\n    Set olApp = CreateObject("Outlook.Application")\r\n    Application.ScreenUpdating = False\r\n    Application.DisplayAlerts = False\r\n    \r\n    'define a temp path for your image\r\n    tmpImageName = VBA.Environ$("temp") & "\\tempo.jpg"\r\n    \r\n    'Range to save as an image\r\n    Set RangeToSend = Worksheets("Sheet1").Range("A3:M27")\r\n    ' Now copy that range as a picture\r\n    RangeToSend.CopyPicture Appearance:=xlScreen, Format:=xlPicture\r\n    \r\n    ' To save this as an Image we need to do a workaround\r\n    ' First add a temporary sheet and add a Chart there\r\n    ' Resize the chart same as the size of the range\r\n    ' Make the Chart border as Zero\r\n    ' Later once we export that chart as an image\r\n    ' and save it in the above temporary path\r\n    ' will delete this temp sheet\r\n    \r\n    Set sht = Sheets.Add\r\n    sht.Shapes.AddChart\r\n    sht.Shapes.Item(1).Select\r\n    Set objChart = ActiveChart\r\n\r\n    With objChart\r\n        .ChartArea.Height = RangeToSend.Height\r\n        .ChartArea.Width = RangeToSend.Width\r\n        .ChartArea.Fill.Visible = msoFalse\r\n        .ChartArea.Border.LineStyle = xlLineStyleNone\r\n        .Paste\r\n        .Export Filename:=tmpImageName, FilterName:="JPG"\r\n    End With\r\n    \r\n    'Now delete that temporary sheet\r\n    sht.Delete\r\n    \r\n   ' Create a new mail message item.\r\n    Set NewMail = olApp.CreateItem(0)\r\n    \r\n    With NewMail\r\n        .Subject = "Your Subject here" ' Replace this with your Subject\r\n        .To = "abc@email.com" ' Replace it with your actual email\r\n        \r\n'       **************************************************\r\n'       You can desing your HTML body for this email.\r\n'       below HTML code will display the image in\r\n'       Body of the email. It will not go in attachment.\r\n'       **************************************************\r\n        .HTMLBody = "<body>Dear Sir\/Madam, \r\n\r\nKindly find the report below:" & _\r\n        "\r\n<img src=" & "'" & tmpImageName & "'\/>\r\nRegards,\r\nLearnExcelMacro.com <\/body>"\r\n        .Send\r\n        \r\n    End With\r\n\r\nerr:\r\n\r\n    'Release memory.\r\n    ' Kill tmpImageName\r\n    Set olApp = Nothing\r\n    Set NewMail = Nothing\r\n    Application.ScreenUpdating = True\r\n    Application.DisplayAlerts = True\r\nEnd Sub\r\n\r\n<\/code><\/pre>\n

An Explanation : What this code does?<\/h1>\n

[checklist icon=”fa-check” iconcolor=”” circle=”” circlecolor=”” size=”13px” class=”” id=””][li_item icon=”fa-check”]Takes the Range provided by you and copy it as a Picture[\/li_item][li_item icon=”fa-check”]Creates a Temp worksheet and add a Chart and paste this image in to a Blank Chart[\/li_item][li_item icon=”fa-check”]Now export this chart as an Image and save it to a temp folder[\/li_item][li_item icon=”fa-check”]Create your mail in Outlook and Draft your Mail in HTML as shown in the above code and then send the email.[\/li_item][li_item icon=”fa-check”]Now delete the temp sheet and temp image from temp folder and release all the objects created for outlook.[\/li_item][\/checklist]<\/p>\n

[content_boxes layout=”icon-on-side” columns=”1″ icon_align=”left” title_size=”” backgroundcolor=”#fff6d1″ icon_circle=”” icon_circle_radius=”” iconcolor=”” circlecolor=”” circlebordercolor=”” circlebordercolorsize=”” outercirclebordercolor=”” outercirclebordercolorsize=”” icon_size=”20″ link_type=”” link_area=”” animation_delay=”” animation_offset=”” animation_type=”0″ animation_direction=”down” animation_speed=”0.1″ margin_top=”” margin_bottom=”” class=”” id=””][content_box title=”Important” icon=”fa-bullhorn” backgroundcolor=”” iconcolor=”” circlecolor=”” circlebordercolor=”” circlebordercolorsize=”” outercirclebordercolor=”” outercirclebordercolorsize=”” iconrotate=”” iconspin=”no” image=”” image_width=”35″ image_height=”35″ link=”” linktarget=”_self” linktext=”” animation_type=”0″ animation_direction=”down” animation_speed=”0.1″]Make sure that your image is not deleted before the email is actually sent. .Send <\/strong> command creates the mail and trigger a send.. that is it. It does not wait for actually email to be sent from the outbox. In such case if your image is deleted before your email is actually sent, then You may see that your image is not part of the email because it was deleted before email was sent actually. This is the reason I have commented the delete statement (‘ Kill tmpImageName) of the temp image.[\/content_box][\/content_boxes]<\/p>\n

Download Sample<\/h1>\n

Here is your sample workbook to play with.<\/p>\n\n<\/span>","protected":false},"excerpt":{"rendered":"

Dear Friends, Couple of my friends asked me about this like how can I send screenshot of a particular range area of my excel sheet embedded in my HTML mail with other texts in my email. I also got this question on Microsoft Excel forum where I answered that question by providing a piece of […]<\/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":[1672,1675,1676],"tags":[],"class_list":["post-4755","post","type-post","status-publish","format-standard","hentry","category-excel-formula","category-excel-macro-for-beginners","category-excel-tips"],"yoast_head":"\nSend Image of a Range from Excel embedded in Mail [Inline Image in Mail]<\/title>\n<meta name=\"description\" content=\"Macro to send image of a range embedded in Outlook body email. Send image of a range embedded in the outlook email using excel Macro. How to send embedded image in Outlook mail body using excel vba\" \/>\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\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Send Image of a Range from Excel embedded in Mail [Inline Image in Mail]\" \/>\n<meta property=\"og:description\" content=\"Macro to send image of a range embedded in Outlook body email. Send image of a range embedded in the outlook email using excel Macro. How to send embedded image in Outlook mail body using excel vba\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/\" \/>\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-11-13T17:13:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-07-17T08:57:13+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/learnexcelmacro.com\/wp\/wp-content\/uploads\/sites\/11\/2016\/11\/SendRangeAsInlineImage.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\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/\"},\"author\":{\"name\":\"Vishwamitra Mishra\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"headline\":\"Send Image of a Range from Excel embedded in Mail [Inline Image in Mail]\",\"datePublished\":\"2016-11-13T17:13:47+00:00\",\"dateModified\":\"2017-07-17T08:57:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/\"},\"wordCount\":476,\"commentCount\":12,\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/11\/SendRangeAsInlineImage.png\",\"articleSection\":[\"Excel Formula\",\"Excel Macro Tutorial\",\"Excel Tips\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/\",\"name\":\"Send Image of a Range from Excel embedded in Mail [Inline Image in Mail]\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/11\/SendRangeAsInlineImage.png\",\"datePublished\":\"2016-11-13T17:13:47+00:00\",\"dateModified\":\"2017-07-17T08:57:13+00:00\",\"description\":\"Macro to send image of a range embedded in Outlook body email. Send image of a range embedded in the outlook email using excel Macro. How to send embedded image in Outlook mail body using excel vba\",\"breadcrumb\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#primaryimage\",\"url\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/11\/SendRangeAsInlineImage.png\",\"contentUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/11\/SendRangeAsInlineImage.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/vmlogger.com\/excel\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel Formula\",\"item\":\"https:\/\/vmlogger.com\/excel\/excel-formula\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Send Image of a Range from Excel embedded in Mail [Inline Image in Mail]\"}]},{\"@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":"Send Image of a Range from Excel embedded in Mail [Inline Image in Mail]","description":"Macro to send image of a range embedded in Outlook body email. Send image of a range embedded in the outlook email using excel Macro. How to send embedded image in Outlook mail body using excel vba","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\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/","og_locale":"en_US","og_type":"article","og_title":"Send Image of a Range from Excel embedded in Mail [Inline Image in Mail]","og_description":"Macro to send image of a range embedded in Outlook body email. Send image of a range embedded in the outlook email using excel Macro. How to send embedded image in Outlook mail body using excel vba","og_url":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/","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-11-13T17:13:47+00:00","article_modified_time":"2017-07-17T08:57:13+00:00","og_image":[{"url":"http:\/\/learnexcelmacro.com\/wp\/wp-content\/uploads\/sites\/11\/2016\/11\/SendRangeAsInlineImage.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\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#article","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/"},"author":{"name":"Vishwamitra Mishra","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"headline":"Send Image of a Range from Excel embedded in Mail [Inline Image in Mail]","datePublished":"2016-11-13T17:13:47+00:00","dateModified":"2017-07-17T08:57:13+00:00","mainEntityOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/"},"wordCount":476,"commentCount":12,"publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/11\/SendRangeAsInlineImage.png","articleSection":["Excel Formula","Excel Macro Tutorial","Excel Tips"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/","url":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/","name":"Send Image of a Range from Excel embedded in Mail [Inline Image in Mail]","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#primaryimage"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/11\/SendRangeAsInlineImage.png","datePublished":"2016-11-13T17:13:47+00:00","dateModified":"2017-07-17T08:57:13+00:00","description":"Macro to send image of a range embedded in Outlook body email. Send image of a range embedded in the outlook email using excel Macro. How to send embedded image in Outlook mail body using excel vba","breadcrumb":{"@id":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#primaryimage","url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/11\/SendRangeAsInlineImage.png","contentUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2016\/11\/SendRangeAsInlineImage.png"},{"@type":"BreadcrumbList","@id":"https:\/\/vmlogger.com\/excel\/2016\/11\/send-image-of-a-range-from-excel-embedded-in-mail-inline-image-in-mail\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vmlogger.com\/excel\/"},{"@type":"ListItem","position":2,"name":"Excel Formula","item":"https:\/\/vmlogger.com\/excel\/excel-formula\/"},{"@type":"ListItem","position":3,"name":"Send Image of a Range from Excel embedded in Mail [Inline Image in Mail]"}]},{"@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\/4755"}],"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=4755"}],"version-history":[{"count":0,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/4755\/revisions"}],"wp:attachment":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media?parent=4755"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/categories?post=4755"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/tags?post=4755"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}