{"id":3649,"date":"2018-12-12T18:30:04","date_gmt":"2018-12-12T18:30:04","guid":{"rendered":"http:\/\/officetuts.net\/excel\/?p=3649"},"modified":"2024-03-26T13:07:48","modified_gmt":"2024-03-26T13:07:48","slug":"logical-operators-equal-to-not-equal-to-greater-than-less-than","status":"publish","type":"post","link":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/","title":{"rendered":"Excel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than"},"content":{"rendered":"\n
Excel-logical-operators<\/a>Download File<\/a><\/div>\n\n\n\n

When you work in Excel, sometimes you may want to calculate data only if a particular condition is met. You can achieve this by using logical operators (also known as comparison operators). Excel provides six of them. This tutorial will provide you with a lot of information on how to use comparison operators inside Excel formulas.<\/p>\n\n\n\n

Logical operators overview<\/h2>\n\n\n\n

As I wrote at the beginning, the logical operators are also called comparison operators. But there is also another name for them – they are called Boolean operators because the result of the comparison always returns TRUE<\/strong> or FALSE<\/strong>.<\/p>\n\n\n\n

They work not only with numbers but also with text and dates.<\/p>\n\n\n\n

The following table shows the six operators used in Excel and describes how it works.<\/p>\n\n\n\n

Name<\/strong><\/td>Operator<\/strong><\/td>Example<\/strong><\/td>Description<\/strong><\/td><\/tr>
equal to<\/td>=<\/td>A1=B1<\/td>Returns TRUE<\/strong> only if A1<\/strong> is equal to A2<\/strong><\/td><\/tr>
greater than<\/td>><\/td>A1>B1<\/td>Returns TRUE<\/strong> only if A1<\/strong> is greater than A2<\/strong><\/td><\/tr>
less than<\/td><<\/td>A1<B1<\/td>Returns TRUE<\/strong> only if A1<\/strong> is less than A2<\/strong><\/td><\/tr>
greater than or equal to<\/td>>=<\/td>A1>=B1<\/td>Returns TRUE<\/strong> only if A1<\/strong> is greater or equal to A2<\/strong><\/td><\/tr>
less than or equal to<\/td><=<\/td>A1<=B1<\/td>Returns TRUE<\/strong> only if A1<\/strong> is less or equal to A2<\/strong><\/td><\/tr>
not equal to<\/td><><\/td>A1<>B1<\/td>Returns TRUE<\/strong> only if A1<\/strong> is different than A2<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n

Here are a few examples showing comparison operators in action.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

Comparing Text<\/h2>\n\n\n\n

As I wrote in the overview, comparison operators also work with text. What you have to remember, is that Excel treats the text as case-insensitive. If you want to treat uppercase and lowercase characters as a different one, you can use the EXACT<\/a> function with the following.<\/p>\n\n\n\n

Here, are some examples.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

In cell A10<\/strong> there is number one formatted as text and then compared with a string. in cell A11 there is a number formatted<\/a> as a number and then compared to a string. In both cases, each comparison operator returns the same result.<\/p>\n\n\n\n

Excel compares text strings in the way that the characters later in the alphabet are considered larger than those that are earlier. So a < t<\/strong>, g < n<\/strong>, etc.<\/p>\n\n\n\n

Let\u2019s take a look at how the text comparison works. In the example below, there are three comparisons.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

C2:<\/strong> Excel checks the first letter in cell A2<\/strong> and compares it to the first letter in cell B2<\/strong>. The letter a < k<\/strong>, so the formula (A2>B2<\/strong>) returns FALSE<\/strong>.<\/p>\n\n\n\n

C3:<\/strong> The first letter in A3<\/strong> is the same as the first letter in cell B3<\/strong>. The second letter in cell A3<\/strong> is \u201cbigger\u201d than the second letter in B3<\/strong>, so the formula returns TRUE<\/strong>.<\/p>\n\n\n\n

C4:<\/strong> The first and the second letter are the same in both cells. Excel compares the third letter, which is bigger in cell B4<\/strong>, that\u2019s why Excel returns FALSE<\/strong>.<\/p>\n\n\n\n

There is also a different way to compare strings. You can choose to compare them by the number of characters.<\/p>\n\n\n\n

If you want to compare the length of two text strings, you can use the following formula.<\/p>\n\n\n\n

=LEN(A2)=LEN(B2)<\/pre>\n\n\n\n

Comparing Dates<\/h2>\n\n\n\n

Besides text and numbers, you can also use logical operators with dates. Let\u2019s take a look at the following table.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

The result is probably not what you expected. Why the value in cell<\/a> C2<\/strong> is FALSE<\/strong>, and why the values in cells C3<\/strong> and C5<\/strong> are TRUE<\/strong>?<\/p>\n\n\n\n

You have to remember that a date in Excel is not saved as a date, but rather a number starting from the 1st<\/sup> of January 1900 at 12:00 AM. You can read more about storing dates and times in Excel<\/a>.<\/p>\n\n\n\n

To better illustrate this, press Ctrl + ~<\/strong> in the upper-left corner of the keyboard, just below the ESC button.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

Now, you can see why the cells in the C column return those values.<\/p>\n\n\n\n

C2<\/strong>: value A2<\/strong> is a number and B2<\/strong> is text.<\/p>\n\n\n\n

C3<\/strong>: Both values are equal, just formatted differently.<\/p>\n\n\n\n

C5<\/strong>: The same values. The value in B5<\/strong> is formatted as a date with time<\/a>. The time is 12:00 AM, which is midnight.<\/p>\n\n\n\n

If you want to be sure that the string will be converted to date (number), use the DATEVALUE function.<\/p>\n\n\n\n

=DATEVALUE(\"1\/24\/1900\")<\/pre>\n\n\n\n

The following examples illustrate how this function works.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

B2<\/strong>: The formula compares the date in cell A2<\/strong> (number 24) to the text string (\u201c1\/24\/1900\u201d).<\/p>\n\n\n\n

C2<\/strong>: This example compares A2<\/strong> to the mathematical calculation (1 divided by 24, and divided by 1900).<\/p>\n\n\n\n

D2<\/strong>: This DATEVALUE<\/strong> function returns 24, which is the same as the value inside A2<\/strong>.<\/p>\n\n\n\n

Comparing numbers to booleans<\/h2>\n\n\n\n

In some programming languages instead of using TRUE<\/strong> and FALSE<\/strong>, boolean values are represented by 1 and 0.<\/p>\n\n\n\n

In Excel, you can also modify boolean operators to be treated as 0 (FALSE) and 1 (TRUE) by adding two minutes (-) operators.<\/p>\n\n\n\n

Here\u2019s how you can do it.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

Adding one minus (-) sign to TRUE will create a negative value. In order to negate the negative value (to create a positive), you have to add the second minus sign.<\/p>\n\n\n\n

When it comes to FALSE<\/strong>, you can add only one minus because there is no negative 0. But I think it\u2019s a good standard to add also two minutes, so you won\u2019t make a mistake.<\/p>\n\n\n\n

The NOT function with logical operators<\/h2>\n\n\n\n

The NOT<\/a> function will negate every result. The function will return TRUE if the result is FALSE<\/strong> and FALSE<\/strong> if the result is TRUE<\/strong>.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

Notice, that =NOT(A2=B2)<\/strong> works the same way as =A2<>B2<\/strong> and =NOT(A2>B2)<\/strong> returns the same result as =A2<=B2<\/strong>.<\/p>\n","protected":false},"excerpt":{"rendered":"

When you work in Excel, sometimes you may want to calculate data only if a particular condition is met. You can achieve this…<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[170,190],"yoast_head":"\nExcel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than<\/title>\n<meta name=\"description\" content=\"Learn how to use Excel's logical operators to calculate data only if a particular condition is met. Get detailed info & download the file now.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than\" \/>\n<meta property=\"og:description\" content=\"Learn how to use Excel's logical operators to calculate data only if a particular condition is met. Get detailed info & download the file now.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-12-12T18:30:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T13:07:48+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/12\/logical-operators.png\" \/>\n<meta name=\"author\" content=\"Tomasz Decker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tomasz Decker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/\"},\"author\":{\"name\":\"Tomasz Decker\",\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\"},\"headline\":\"Excel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than\",\"datePublished\":\"2018-12-12T18:30:04+00:00\",\"dateModified\":\"2024-03-26T13:07:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/\"},\"wordCount\":935,\"publisher\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/12\/logical-operators.png\",\"keywords\":[\"file\",\"pinterest\"],\"articleSection\":[\"examples\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/\",\"url\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/\",\"name\":\"Excel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/12\/logical-operators.png\",\"datePublished\":\"2018-12-12T18:30:04+00:00\",\"dateModified\":\"2024-03-26T13:07:48+00:00\",\"description\":\"Learn how to use Excel's logical operators to calculate data only if a particular condition is met. Get detailed info & download the file now.\",\"breadcrumb\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#primaryimage\",\"url\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/12\/logical-operators.png\",\"contentUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/12\/logical-operators.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/officetuts.net\/excel\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/officetuts.net\/excel\/#website\",\"url\":\"https:\/\/officetuts.net\/excel\/\",\"name\":\"\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/officetuts.net\/excel\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\",\"name\":\"Tomasz Decker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/18cbe22837193574870ae40ba56bf712?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/18cbe22837193574870ae40ba56bf712?s=96&d=mm&r=g\",\"caption\":\"Tomasz Decker\"},\"logo\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/image\/\"},\"description\":\"Spreadsheet and Python enthusiast.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Excel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than","description":"Learn how to use Excel's logical operators to calculate data only if a particular condition is met. Get detailed info & download the file now.","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:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/","og_locale":"en_US","og_type":"article","og_title":"Excel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than","og_description":"Learn how to use Excel's logical operators to calculate data only if a particular condition is met. Get detailed info & download the file now.","og_url":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/","article_published_time":"2018-12-12T18:30:04+00:00","article_modified_time":"2024-03-26T13:07:48+00:00","og_image":[{"url":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/12\/logical-operators.png"}],"author":"Tomasz Decker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Tomasz Decker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#article","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/"},"author":{"name":"Tomasz Decker","@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42"},"headline":"Excel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than","datePublished":"2018-12-12T18:30:04+00:00","dateModified":"2024-03-26T13:07:48+00:00","mainEntityOfPage":{"@id":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/"},"wordCount":935,"publisher":{"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42"},"image":{"@id":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#primaryimage"},"thumbnailUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/12\/logical-operators.png","keywords":["file","pinterest"],"articleSection":["examples"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/","url":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/","name":"Excel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#primaryimage"},"image":{"@id":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#primaryimage"},"thumbnailUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/12\/logical-operators.png","datePublished":"2018-12-12T18:30:04+00:00","dateModified":"2024-03-26T13:07:48+00:00","description":"Learn how to use Excel's logical operators to calculate data only if a particular condition is met. Get detailed info & download the file now.","breadcrumb":{"@id":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#primaryimage","url":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/12\/logical-operators.png","contentUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/12\/logical-operators.png"},{"@type":"BreadcrumbList","@id":"https:\/\/officetuts.net\/excel\/examples\/logical-operators-equal-to-not-equal-to-greater-than-less-than\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/officetuts.net\/excel\/"},{"@type":"ListItem","position":2,"name":"Excel Logical Operators: Equal To, Not Equal To, Greater Than, Less Than"}]},{"@type":"WebSite","@id":"https:\/\/officetuts.net\/excel\/#website","url":"https:\/\/officetuts.net\/excel\/","name":"","description":"","publisher":{"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/officetuts.net\/excel\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42","name":"Tomasz Decker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/18cbe22837193574870ae40ba56bf712?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/18cbe22837193574870ae40ba56bf712?s=96&d=mm&r=g","caption":"Tomasz Decker"},"logo":{"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/image\/"},"description":"Spreadsheet and Python enthusiast."}]}},"_links":{"self":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/3649"}],"collection":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/comments?post=3649"}],"version-history":[{"count":6,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/3649\/revisions"}],"predecessor-version":[{"id":16991,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/3649\/revisions\/16991"}],"wp:attachment":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/media?parent=3649"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/categories?post=3649"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/tags?post=3649"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}