{"id":12197,"date":"2014-05-30T17:30:38","date_gmt":"2014-05-30T17:30:38","guid":{"rendered":"http:\/\/www.learnexcelmacro.com\/wp\/?p=3693"},"modified":"2014-05-30T17:30:38","modified_gmt":"2014-05-30T17:30:38","slug":"offset-function-tutorial","status":"publish","type":"post","link":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/","title":{"rendered":"Excel OFFSET Function – Excel Tutorial"},"content":{"rendered":"

Dear Friends,<\/p>\n

What is OFFSET () Function? <\/h2>\n

OFFSET()<\/strong> is a built-in function in excel which returns a range reference which is offset a number of Rows and Columns from a specific Cell or range. Most importantly this is a function which returns Range Address and not the Value.
\nDid you get it what it is used for? No? Don’t worry it is not as difficult as it seems from the definition :P. It will be more clear once you go through with the explanation and examples given below about this Microsoft Excel function. This is my promise to you \ud83d\ude42<\/p>\n

I get so many questions around two functions of Excel THE MOST<\/strong>. One of them is this OFFSET ()<\/strong> and the other one is VLOOKUP ()<\/strong>. In fact these two functions used to be mysterious for me as well when I had started exploring about Excel Functions. But I promise you, they are not difficult to understand. I will try to explain them in a very simple manner :).
\n 
\nIn this article I will explain about OFFSET Function only. VLOOKUP will be explained in further articles.<\/p>\n

Syntax of OFFSET() Function in Excel<\/h3>\n

When you type =OFFSET(<\/strong> in a cell in excel you see following:
\n\"OFFSET
\nAs you can see in the above picture following are the arguments which are required for OFFSET<\/strong> Function. All the arguments and their meaning is explained below:<\/p>\n

Reference (Mandatory)<\/h3>\n

This is the cell or range address where your offset applied from.<\/p>\n

Row (Mandatory)<\/h3>\n

Rows<\/strong> is the Number of Rows by what you want to apply Offset. It means by how many rows you want to shift from the Reference in the above parameter mentioned.<\/p>\n

Cols (Mandatory)<\/h3>\n

is the Number of Columns by what you want to apply Offset. It means by how many Columns you want to shift from the reference in the above parameter mentioned.<\/p>\n

Height (Optional)<\/h3>\n

Height is the number for Rows which you want as a Returned Range from this Function. This is an optional parameter. If you omit this then it takes the same number of rows as Reference parameter passed.<\/p>\n

Width (Optional)<\/h3>\n

Width is the number for Columns which you want as a Returned Range from this Function. This is an optional parameter. If you omit this then it takes the same number of Columns as Reference parameter passed.<\/p>\n

Example:<\/h3>\n

Below is the table which I am going to use of all the Examples below:
\n\"OFFSET<\/p>\n

Display a Single Cell Value using OFFSET()<\/h2>\n

Suppose from the Above table you want to find the Sales of Aug 2012 (Only Single Cell Value) where the Selected Range is D5:I16<\/strong>. This can be done by two different parameters passed. You can refer the type 1 and Type 2 – both will return the Sales value of Aug 2012.<\/p>\n

Type 1. Range as Reference<\/h2>\n


\nReference<\/strong> = D5:I16 (Range as Reference)<\/strong><\/p>\n

Rows<\/strong> = 5 (Because Aug is 5 Row Ahead from the Start of the Reference D5 (March)
\nCols<\/strong> = 3 (Because 2012 is 3 columns ahead from the start of Reference D5 (2009)
\nHeight<\/strong> = 1 (We can not leave this blank because in that case it will take the height of the data selected (i.e. D5 to D16 = 12)
\nWidth<\/strong>= 1 (We can not leave this blank because in that case it will take the Width of the data selected (i.e. D5 to I5 = 6)
\n<\/i>
\nHence the below Formula will give you Sales value of Aug 2012
\n\"OFFSET<\/p>\n

Type 2. Single Cell as Reference<\/h2>\n

In this case I will pass reference as the First cell of the Above table i.e. D5<\/strong>
\n
\nReference<\/strong> = D5 (A single Cell address)<\/strong>
\nRows<\/strong> = 5 (Same as Type 1 – No Change)
\nCols<\/strong> = 3 (Same as Type 1 – No Change)
\nHeight<\/strong> = You can omit this parameter because in reference address only one Row is there so no need to specify it)
\nWidth<\/strong>= You can omit this parameter because in reference address only one column is there so no need to specify it)
\n<\/i><\/p>\n

With the parameter formula will will look different but it will refer to the same cell hence it will give you the same result as shown below image
\n\"OFFSET<\/p>\n

\nDid you notice any contradictory statement made by me in this article so far? At the start of the Article, as I told that this Function returns a Reference (Address) but in the above example you can see that it is returning a value. Isn’t it? But actually it is not returning a value rather it is returning the reference of the Cell but as you know if you pass reference of a single cell in other cell with an Equal To<\/strong> Sign then the other Cell displays the value of first cell in it. Because of this you are able to see the value here but actually it is returning the reference ONLY. This will be more clear with my next example.<\/p>\n<\/blockquote>\n

With the above Example Type 1, what will happen if I pass greater than 1 (2,3 etc.) height and width. What are you guessing? It should provide the Subset of the Main table with height and width passed as a parameter. Right? Ok then let’s try this
\n\"OFFSET<\/p>\n

What is this? It is throwing Value Error!! What’s wrong with my Formula?<\/h3>\n

As I explained above that OFFSET<\/strong> is a function which returns the reference of the Range or Cell. In Type 1 and 2, it was not throwing any error because only one cell was coming as a result hence it was showing the value of that reference as I have already explained above.
\nHere in this case OFFSET ()<\/strong> is returning more than one cell (Range) hence it is throwing Value Error. This is the reason why OFFSET<\/strong> is being used as an input for other Functions which takes references (Range) as an Input and results the value like SUM(),AVG(),MAX(), MIN()<\/strong> etc.<\/p>\n

 
\nTherefore if you want the Total Sales of May 2010 to July 2012<\/strong> then you can use the formula with following parameters:<\/p>\n

Reference is : D5:I16<\/strong>
\nRow = 2 (Because May is 2 Row Ahead from the Start of the Reference D5 (March)
\nColumn = 1 (Because 2010 is 1 columns ahead from the start of Reference D5 (2009)
\nHeight = 3 (We need to find the Sum of Sales for May, June and July = 3 Rows)
\nWidth= 3 (We need to find the sum of Sales for 2010, 2011 and 2012 = 3 columns)<\/p>\n

\"OFFSET<\/p>\n

How the above formula Worked?<\/h2>\n

First of all OFFSET formula OFFSET(D5:I16,2,1,3,3)<\/strong> returned the Range as <\/strong>E7:G9<\/strong>. This range reference is passed to SUM ()<\/strong> Formula and you know SUM will add all the values in that Range and provide the result. Simple… \ud83d\ude42
\n <\/p>\n

Can the parameters be in Negative?<\/h2>\n

Yes but not all the parameters. Rows and Cols can be in negative. Reference cell is considered at Zeroth position. Hence if you want to offset rows in right side of the reference then it will be positive number and if you want to offset rows in left hand side then it should be in negative number.
\nSame case with Cols parameter as well. If you want to offset your column downwards from your reference cell then it will be positive. You should be Negative if you want to offset your column upwards from the reference cell.<\/p>\n

Do you still have doubt regarding OFFSET FUNCTION? Any help?<\/h2>\n

Let me know through comment or mail me. Do provide your feedback to improve the content of the articles \ud83d\ude42
\n <\/p>\n

Want to Play around and Practice this Formula?<\/h3>\n

Then what are you waiting for? Download the below sheet, Get a cup of Coffee and keep playing with it and provide your experience with OFFSET function :).<\/h3>\n

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

Dear Friends, What is OFFSET () Function? OFFSET() is a built-in function in excel which returns a range reference which is offset a number of Rows and Columns from a specific Cell or range. Most importantly this is a function which returns Range Address and not the Value. Did you get it what it is […]<\/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,1682],"tags":[],"class_list":["post-12197","post","type-post","status-publish","format-standard","hentry","category-excel-formula","category-popular-articles"],"yoast_head":"\nExcel OFFSET Function - Excel Tutorial - 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\/05\/offset-function-tutorial\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel OFFSET Function - Excel Tutorial\" \/>\n<meta property=\"og:description\" content=\"Dear Friends, What is OFFSET () Function? OFFSET() is a built-in function in excel which returns a range reference which is offset a number of Rows and Columns from a specific Cell or range. Most importantly this is a function which returns Range Address and not the Value. Did you get it what it is […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/\" \/>\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-05-30T17:30:38+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/learnexcelmacro.com\/wp\/wp-content\/uploads\/sites\/11\/2014\/05\/OFFSET-Synatx.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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/\"},\"author\":{\"name\":\"Vishwamitra Mishra\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"headline\":\"Excel OFFSET Function – Excel Tutorial\",\"datePublished\":\"2014-05-30T17:30:38+00:00\",\"dateModified\":\"2014-05-30T17:30:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/\"},\"wordCount\":1246,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/05\/OFFSET-Synatx.png\",\"articleSection\":[\"Excel Formula\",\"Popular Articles\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/\",\"name\":\"Excel OFFSET Function - Excel Tutorial - Let's excel in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/05\/OFFSET-Synatx.png\",\"datePublished\":\"2014-05-30T17:30:38+00:00\",\"dateModified\":\"2014-05-30T17:30:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#primaryimage\",\"url\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/05\/OFFSET-Synatx.png\",\"contentUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/05\/OFFSET-Synatx.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#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\":\"Excel OFFSET Function – Excel Tutorial\"}]},{\"@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":"Excel OFFSET Function - Excel Tutorial - 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\/05\/offset-function-tutorial\/","og_locale":"en_US","og_type":"article","og_title":"Excel OFFSET Function - Excel Tutorial","og_description":"Dear Friends, What is OFFSET () Function? OFFSET() is a built-in function in excel which returns a range reference which is offset a number of Rows and Columns from a specific Cell or range. Most importantly this is a function which returns Range Address and not the Value. Did you get it what it is […]","og_url":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/","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-05-30T17:30:38+00:00","og_image":[{"url":"http:\/\/learnexcelmacro.com\/wp\/wp-content\/uploads\/sites\/11\/2014\/05\/OFFSET-Synatx.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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#article","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/"},"author":{"name":"Vishwamitra Mishra","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"headline":"Excel OFFSET Function – Excel Tutorial","datePublished":"2014-05-30T17:30:38+00:00","dateModified":"2014-05-30T17:30:38+00:00","mainEntityOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/"},"wordCount":1246,"commentCount":3,"publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/05\/OFFSET-Synatx.png","articleSection":["Excel Formula","Popular Articles"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/","url":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/","name":"Excel OFFSET Function - Excel Tutorial - Let's excel in Excel","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#primaryimage"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/05\/OFFSET-Synatx.png","datePublished":"2014-05-30T17:30:38+00:00","dateModified":"2014-05-30T17:30:38+00:00","breadcrumb":{"@id":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#primaryimage","url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/05\/OFFSET-Synatx.png","contentUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2014\/05\/OFFSET-Synatx.png"},{"@type":"BreadcrumbList","@id":"https:\/\/vmlogger.com\/excel\/2014\/05\/offset-function-tutorial\/#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":"Excel OFFSET Function – Excel Tutorial"}]},{"@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\/12197"}],"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=12197"}],"version-history":[{"count":0,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/12197\/revisions"}],"wp:attachment":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media?parent=12197"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/categories?post=12197"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/tags?post=12197"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}