{"id":12114,"date":"2012-01-04T07:58:05","date_gmt":"2012-01-04T07:58:05","guid":{"rendered":"http:\/\/www.learnexcelmacro.com\/?p=1144"},"modified":"2022-08-07T00:53:26","modified_gmt":"2022-08-07T00:53:26","slug":"how-to-compare-two-columns-in-excel-to-find-duplicates","status":"publish","type":"post","link":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/","title":{"rendered":"How to compare two columns in Excel to find duplicates"},"content":{"rendered":"

Many times we require to compare two columns’ data and find out all the Duplicates. So in this article, you are going to see how we can compare two columns in Excel and find out duplicates.<\/p>\n

There are two ways of comparing two columns in an Excel Worksheet.<\/p>\n

1.<\/strong>By Using Excel Formula
\n2.<\/strong> By Using Excel Macro<\/p>\n

Compare two columns by using Excel Formulas:<\/h3>\n

By using ISERROR<\/strong> and MATCH<\/strong> formula we can compare 2 columns.
\nType the below formula in the column where you want the list of all duplicates in both the column<\/p>\n

=IF(ISERROR(MATCH(A1,$C$1:$C$5,0)),\"\",A1) <\/code><\/pre>\n

Where:<\/strong>
\nA1 –<\/strong> Is the column Which you want to be compared
\n$C$1:$C$5 –<\/strong> Is the Range which you want compared with<\/p>\n

\"Compare

Compare Two Column in Excel Formula<\/p><\/div>\n

Note:<\/strong> In the above formula, whichever cell it is finding as duplicate in Column A, it will populate in the same row. As shown in the above image.<\/p>\n

Compare two columns by using Excel Macro:<\/h3>\n

1. This function will compare Column A with Column B and list the Duplicates in Column C in a Sequence.<\/h2>\n
\r\n\r\nPrivate Sub CommandButton1_Click()\r\nDim CompareRange As Variant, To_Be_Compared As Variant, x As Variant, y As Variant\r\n\r\nRange(\"A1\").Select\r\nSelection.End(xlDown).Select\r\nSet To_Be_Compared = Range(\"A1:\" & Selection.Address)\r\nRange(\"B1\").Select\r\nSelection.End(xlDown).Select\r\nSet CompareRange = Range(\"B1:\" & Selection.Address)\r\n\r\n\r\n'If you want to exchange the columns like if you want to\r\n'compare B  with A then chnage the range\r\n'and selection or vise-versa\r\n\r\ni = 1\r\nTo_Be_Compared.Select\r\n\r\n    For Each x In Selection\r\n        For Each y In CompareRange\r\n            If x = y Then\r\n              Range(\"C\" & i).Value = x\r\n              i = i + 1\r\n            End If\r\n        Next y\r\n    Next x\r\nEnd Sub\r\n<\/code><\/pre>\n

2. This function will compare Column A with Column B and list the Duplicates in Column C but not in a Sequence. It will list exactly in the same row which is duplicate.<\/h2>\n
\r\nPrivate Sub CommandButton2_Click()\r\nDim CompareRange As Variant, To_Be_Compared As Variant, x As Variant, y As Variant\r\n\r\nRange(\"A1\").Select\r\nSelection.End(xlDown).Select\r\nSet To_Be_Compared = Range(\"A1:\" & Selection.Address)\r\nRange(\"B1\").Select\r\nSelection.End(xlDown).Select\r\nSet CompareRange = Range(\"B1:\" & Selection.Address)\r\n\r\n'If you want to exchange the columns like if you want to\r\n'compare B  with A then chnage the range\r\n'and selection or vise-versa\r\n\r\nTo_Be_Compared.Select\r\n\r\n    For Each x In Selection\r\n        For Each y In CompareRange\r\n            If x = y Then x.Offset(0, 2) = x\r\n        Next y\r\n    Next x\r\nEnd Sub\r\n<\/code><\/pre>\n

3. This function will ask for Column to Compare, Column To be compared and Column to list the Duplicates. This is completely dynamic. It can complare any Column with any Column and list all the duplicates in any of the column. <\/h2>\n
\r\n\r\nPrivate Sub CommandButton1_Click()\r\nDim CompareRange As Variant, To_Be_Compared As Variant, x As Variant, y As Variant\r\nstr1 = InputBox(\"Enter Column Name to be Compared\")\r\nstr2 = InputBox(\"Enter Column Name to Compare\")\r\nstr3 = InputBox(\"Enter Column Name to put the Result\")\r\nRange(str1 & \"1\").Select\r\nSelection.End(xlDown).Select\r\nSet To_Be_Compared = Range(str1 & \"1:\" & Selection.Address)\r\nRange(str2 & \"1\").Select\r\nSelection.End(xlDown).Select\r\nSet CompareRange = Range(str2 & \"1:\" & Selection.Address)\r\n\r\n\r\n'If you want to exchange the columns like if you want to\r\n'compare B  with A then chnage the range\r\n'and selection or vise-versa\r\n\r\ni = 1\r\nTo_Be_Compared.Select\r\n\r\n    For Each x In Selection\r\n        For Each y In CompareRange\r\n            If x = y Then\r\n              Range(str3 & i).Value = x\r\n              i = i + 1\r\n            End If\r\n        Next y\r\n    Next x\r\nEnd Sub\r\n<\/code><\/pre>\n<\/span>","protected":false},"excerpt":{"rendered":"

Many times we require to compare two columns’ data and find out all the Duplicates. So in this article, you are going to see how we can compare two columns in Excel and find out duplicates. There are two ways of comparing two columns in an Excel Worksheet. 1.By Using Excel Formula 2. By Using […]<\/p>\n","protected":false},"author":45,"featured_media":242555,"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],"tags":[],"class_list":["post-12114","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-excel-functions","category-macro"],"yoast_head":"\nHow to compare two columns in Excel to find duplicates - 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\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to compare two columns in Excel to find duplicates\" \/>\n<meta property=\"og:description\" content=\"Many times we require to compare two columns’ data and find out all the Duplicates. So in this article, you are going to see how we can compare two columns in Excel and find out duplicates. There are two ways of comparing two columns in an Excel Worksheet. 1.By Using Excel Formula 2. By Using […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/\" \/>\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=\"2012-01-04T07:58:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-07T00:53:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2012\/01\/Compare-two-column-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"539\" \/>\n\t<meta property=\"og:image:height\" content=\"371\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/\"},\"author\":{\"name\":\"Vishwamitra Mishra\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"headline\":\"How to compare two columns in Excel to find duplicates\",\"datePublished\":\"2012-01-04T07:58:05+00:00\",\"dateModified\":\"2022-08-07T00:53:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/\"},\"wordCount\":264,\"commentCount\":16,\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2012\/01\/Compare-two-column-1.png\",\"articleSection\":[\"Excel Functions\",\"Excel Macro\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/\",\"name\":\"How to compare two columns in Excel to find duplicates - Let's excel in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2012\/01\/Compare-two-column-1.png\",\"datePublished\":\"2012-01-04T07:58:05+00:00\",\"dateModified\":\"2022-08-07T00:53:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#primaryimage\",\"url\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2012\/01\/Compare-two-column-1.png\",\"contentUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2012\/01\/Compare-two-column-1.png\",\"width\":539,\"height\":371,\"caption\":\"Compare Two Column in Excel Formula\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#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\":\"How to compare two columns in Excel to find duplicates\"}]},{\"@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":"How to compare two columns in Excel to find duplicates - 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\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/","og_locale":"en_US","og_type":"article","og_title":"How to compare two columns in Excel to find duplicates","og_description":"Many times we require to compare two columns’ data and find out all the Duplicates. So in this article, you are going to see how we can compare two columns in Excel and find out duplicates. There are two ways of comparing two columns in an Excel Worksheet. 1.By Using Excel Formula 2. By Using […]","og_url":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/","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":"2012-01-04T07:58:05+00:00","article_modified_time":"2022-08-07T00:53:26+00:00","og_image":[{"width":539,"height":371,"url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2012\/01\/Compare-two-column-1.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#article","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/"},"author":{"name":"Vishwamitra Mishra","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"headline":"How to compare two columns in Excel to find duplicates","datePublished":"2012-01-04T07:58:05+00:00","dateModified":"2022-08-07T00:53:26+00:00","mainEntityOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/"},"wordCount":264,"commentCount":16,"publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2012\/01\/Compare-two-column-1.png","articleSection":["Excel Functions","Excel Macro"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/","url":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/","name":"How to compare two columns in Excel to find duplicates - Let's excel in Excel","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#primaryimage"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2012\/01\/Compare-two-column-1.png","datePublished":"2012-01-04T07:58:05+00:00","dateModified":"2022-08-07T00:53:26+00:00","breadcrumb":{"@id":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#primaryimage","url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2012\/01\/Compare-two-column-1.png","contentUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2012\/01\/Compare-two-column-1.png","width":539,"height":371,"caption":"Compare Two Column in Excel Formula"},{"@type":"BreadcrumbList","@id":"https:\/\/vmlogger.com\/excel\/2012\/01\/how-to-compare-two-columns-in-excel-to-find-duplicates\/#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":"How to compare two columns in Excel to find duplicates"}]},{"@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\/12114"}],"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=12114"}],"version-history":[{"count":0,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/12114\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media\/242555"}],"wp:attachment":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media?parent=12114"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/categories?post=12114"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/tags?post=12114"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}