{"id":1613,"date":"2024-01-19T12:39:30","date_gmt":"2024-01-19T12:39:30","guid":{"rendered":"https:\/\/www.offidocs.com\/blog\/?p=1613"},"modified":"2024-01-16T15:19:38","modified_gmt":"2024-01-16T15:19:38","slug":"how-to-use-the-if-function-in-excel","status":"publish","type":"post","link":"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/","title":{"rendered":"How to Use the IF Function in Excel?"},"content":{"rendered":"\n<p>The IF function is one of the most useful and frequently used functions in Excel. It allows you to make logical comparisons between values and output a value depending on whether the comparison is true or false.<\/p>\n\n\n\n<p>Learning how to properly structure and nest IF functions is critical for effectively analyzing data and calculating results based on varying conditions or criteria. Here\u2019s a step-by-step guide to using the IF function in Excel.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">IF Function Syntax<\/h2>\n\n\n\n<p>The syntax structure for an IF function in Excel is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=IF(logical_test, value_if_true, value_if_false)<\/code><\/pre>\n\n\n\n<p>Where:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Logical Test:<\/strong>&nbsp;The condition you want to test that evaluates to either TRUE or FALSE<\/li>\n\n\n\n<li><strong>Value if True:<\/strong>\u00a0The value returned if the logical test evaluates to TRUE<\/li>\n\n\n\n<li><strong>Value if False:<\/strong>\u00a0The value returned if the logical test evaluates to FALSE<\/li>\n<\/ul>\n\n\n\n<p>Now let\u2019s walk through some simple BEGINNER examples of using IF functions in Excel.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Examples of Using IF Function in Excel<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. IF Function Usage Example: Simple Logical Test<\/h3>\n\n\n\n<p>Let\u2019s say you have student test score data, and you want to output whether each student passed or failed the exam based on a 50-point passing cutoff score.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Name<\/th><th>Test Score<\/th><th>Pass or Fail<\/th><\/tr><\/thead><tbody><tr><td>Sally<\/td><td>45<\/td><td><\/td><\/tr><tr><td>Mark<\/td><td>60<\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The IF function would test whether the student\u2019s score was greater than or equal to 50 which evaluates as either TRUE or FALSE.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If TRUE, return \u201cPass\u201d<\/li>\n\n\n\n<li>If FALSE, return \u201cFail\u201d<\/li>\n<\/ul>\n\n\n\n<p>So cell C2 would be:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>=IF(B2&gt;=50,\u201dPass\u201d,\u201dFail\u201d)<\/code><\/code><\/pre>\n\n\n\n<p>And cell C3 would be:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>=IF(B3&gt;=50,\u201dPass\u201d,\u201dFail\u201d)<\/code><\/code><\/pre>\n\n\n\n<p>Filling this down outputs a Pass or Fail for each row based on the score:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Name<\/th><th>Test Score<\/th><th>Pass or Fail<\/th><\/tr><\/thead><tbody><tr><td>Sally<\/td><td>45<\/td><td>Fail<\/td><\/tr><tr><td>Mark<\/td><td>60<\/td><td>Pass<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This is a straightforward example of how the logical test separates output values based on a TRUE or FALSE condition using the student score values.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. IF Function Example 2: Nested IFs<\/h3>\n\n\n\n<p>Building on the scoring example above, let\u2019s add some more complex logical tests by <em>nesting<\/em> multiple IF functions together.<\/p>\n\n\n\n<p>Nesting refers to putting one IF statement inside another IF statement to create more conditions.<\/p>\n\n\n\n<p>Let\u2019s output letter grades A, B, C, D or F instead of just <a href=\"https:\/\/www.offidocs.com\/blog\/how-to-use-excel-spreadsheet-to-track-students-progress\/\">Pass\/Fail<\/a> based on the following grade brackets:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A = 90-100<\/li>\n\n\n\n<li>B = 80-89<\/li>\n\n\n\n<li>C = 70-79<\/li>\n\n\n\n<li>D = 60-69<\/li>\n\n\n\n<li>F = &lt;60<\/li>\n<\/ul>\n\n\n\n<p>Take Mark\u2019s 60 score as an example. The nested IF statements in Excel would be:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>=IF(B3&gt;=90,\"A\",IF(B3&gt;=80,\"B\",IF(B3&gt;=70,\"C\", IF(B3&gt;=60,\"D\",\"F\"))))<\/code><\/code><\/pre>\n\n\n\n<p>Breaking this down step-by-step:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Test if Mark\u2019s score is greater than or equal to 90. If yes, return A. If no, proceed.<\/li>\n\n\n\n<li>Test if his score is greater than or equal to 80. If yes, return B. If no, proceed.<\/li>\n\n\n\n<li>Test if his score is greater than or equal to 70&#8230;. And so on.<\/li>\n\n\n\n<li>The final else criteria returns F if none of the above statements are true.<\/li>\n<\/ul>\n\n\n\n<p>So you can observe how nesting IF statements allow multiple value outputs depending on cascading logical tests.<\/p>\n\n\n\n<p>Recommended Reading: <a href=\"https:\/\/www.offidocs.com\/blog\/10-excel-functions-every-student-should-know\/\">10 Excel Functions Every Student Must Know<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. IF Example 3: AND\/OR Conditions<\/h3>\n\n\n\n<p>Beyond comparing values with logical operators like greater than or equal to, you can also evaluate more complex AND\/OR logic conditions using IF.<\/p>\n\n\n\n<p>For example, let\u2019s output a pass status if the student scored above 75 AND attended over 80% of classes using this data:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Name<\/th><th>Score<\/th><th>Attendance %<\/th><th>Pass Status<\/th><\/tr><\/thead><tbody><tr><td>Sally<\/td><td>85<\/td><td>90%<\/td><td><\/td><\/tr><tr><td>Mark<\/td><td>72<\/td><td>78%<\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The AND logical test would be structured as:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>=IF(AND(B2&gt;75,C2&gt;80),\"Pass\",\"Fail\")<\/code><\/code><\/pre>\n\n\n\n<p>This returns a Pass if BOTH criteria are met, while failing either condition results in outputting Fail.<\/p>\n\n\n\n<p>Conversely, you can test for multiple OR conditions instead with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>=IF(OR(B2&gt;75,C2&gt;80),\"Pass\",\"Fail\")<\/code><\/code><\/pre>\n\n\n\n<p>Now students would pass if EITHER scoring over 75 OR having over 80% attendance is true. But failing both still returns a Fail status.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. IF Example 4: SUMIF Function<\/h3>\n\n\n\n<p>In addition to IF, another useful function related to conditional logic is SUMIF. This sums a range of cells based on specified criteria.<\/p>\n\n\n\n<p>Let\u2019s revisit the scores dataset and use SUMIF to sum only the passing scores over 50.<\/p>\n\n\n\n<p>The SUMIF syntax is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>=SUMIF(range, criteria, sum_range)<\/code><\/code><\/pre>\n\n\n\n<p>So inputting:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>=SUMIF(B2:B4,\u201d&gt;=50\u201d, B2:B4)<\/code><\/code><\/pre>\n\n\n\n<p>Would output 105, summing only Mark&#8217;s 60 and Sally\u2019s 85 since those meet the &gt;=50 criteria while ignoring the 45.<\/p>\n\n\n\n<p>This demonstrates how SUMIF can selectively total numeric data based on conditional parameters like above\/below values, text matches, date ranges, or other attributes.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. IF Example 5: VLOOKUP Function<\/h3>\n\n\n\n<p>Finally, let\u2019s examine a common use case combining IF and VLOOKUP functions.<\/p>\n\n\n\n<p>VLOOKUP pulls data from a separate table or range based on a lookup value matching a criterion.<\/p>\n\n\n\n<p>We can integrate an IF statement to output one value from the VLOOKUP if there\u2019s a match while displaying another value if no match exists.<\/p>\n\n\n\n<p>Say you have student ID numbers in one table and want to pull their corresponding names into another table via VLOOKUP to match the IDs.<\/p>\n\n\n\n<p>It would be structured as:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>=IF(ISNA(VLOOKUP(A2,Sheet2!A1:B5,2,FALSE)),\"No Match\",VLOOKUP(A2,Sheet2!A1:B5,2,FALSE))<\/code><\/code><\/pre>\n\n\n\n<p>So if the VLOOKUP returns no match, the IF statement catches the #N\/A error code and outputs \u201cNo Match\u201d. But if a name match is found, then it will output the actual name string instead.<\/p>\n\n\n\n<p>This syntax allows handling those unmatched VLOOKUP searches gracefully or returning custom flags when no data exists.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Advanced Tips for IF Function Usage<\/h2>\n\n\n\n<p>With those basic examples covered, let\u2019s run through some quickfire tips on more advanced usage of IF functions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Transpose arrays<\/strong>&nbsp;with IF to return full column or row arrays instead of just scalars<\/li>\n\n\n\n<li><strong>Combine with COUNTIF<\/strong>&nbsp;to count occurrences meeting certain conditions<\/li>\n\n\n\n<li>Create&nbsp;<strong>cascading dropdowns<\/strong>&nbsp;by nesting IFs where selection values filter later dropdowns dynamically<\/li>\n\n\n\n<li>Construct&nbsp;<strong>dynamic charts<\/strong>&nbsp;updating on selection change by linking chart data ranges to IF outputs<\/li>\n\n\n\n<li>Build\u00a0<strong>data validation rules<\/strong>\u00a0with custom error-handling responses using IF<\/li>\n\n\n\n<li>Integrate IF with&nbsp;<strong>PivotTables and charts<\/strong>&nbsp;to customize aggregation logic rather than display defaults<\/li>\n\n\n\n<li>Improve&nbsp;<strong>dashboard interactions<\/strong>&nbsp;by linking IF outputs to input controls like slicers or scroll bars<\/li>\n<\/ul>\n\n\n\n<p>Learning to creatively blend IF with VLOOKUP, SUMIF, COUNTIF, and other functions expands your ability to manipulate data analysis outcomes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Takeaways<\/h2>\n\n\n\n<p>The simplicity yet flexibility of IF functions in Excel makes them invaluable for both basic and complex logical tests. All it takes is an understanding of syntax arrangements and nesting principles to handle elaborate multi-condition scenarios.<\/p>\n\n\n\n<p>With robust mastery over IF, you can customize virtually any data calculation, analysis, or dashboard interaction to precisely meet business needs. So integrate some logic testing today to unlock greater intelligence from your Excel models!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The IF function is one of the most useful and frequently used functions in Excel. It allows you to make logical comparisons between values and<\/p>\n","protected":false},"author":1,"featured_media":1634,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[125],"tags":[147],"class_list":["post-1613","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-excel-sheets","tag-if-function-in-excel"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Use the IF Function in Excel? - OffiDocs<\/title>\n<meta name=\"description\" content=\"use the IF function in Excel by entering a logical test in the format: =IF(logical_test, value_if_true, value_if_false)\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use the IF Function in Excel? - OffiDocs\" \/>\n<meta property=\"og:description\" content=\"use the IF function in Excel by entering a logical test in the format: =IF(logical_test, value_if_true, value_if_false)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/\" \/>\n<meta property=\"og:site_name\" content=\"OffiDocs\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-19T12:39:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.offidocs.com\/blog\/wp-content\/uploads\/2024\/01\/OffiDocs-Blog-Feature-Images.jpg\" \/>\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\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/\",\"url\":\"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/\",\"name\":\"How to Use the IF Function in Excel? - OffiDocs\",\"isPartOf\":{\"@id\":\"https:\/\/www.offidocs.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.offidocs.com\/blog\/wp-content\/uploads\/2024\/01\/OffiDocs-Blog-Feature-Images.jpg\",\"datePublished\":\"2024-01-19T12:39:30+00:00\",\"author\":{\"@id\":\"https:\/\/www.offidocs.com\/blog\/#\/schema\/person\/b4df979c363c4cea68464ea87edf90e3\"},\"description\":\"use the IF function in Excel by entering a logical test in the format: =IF(logical_test, value_if_true, value_if_false)\",\"breadcrumb\":{\"@id\":\"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/#primaryimage\",\"url\":\"https:\/\/www.offidocs.com\/blog\/wp-content\/uploads\/2024\/01\/OffiDocs-Blog-Feature-Images.jpg\",\"contentUrl\":\"https:\/\/www.offidocs.com\/blog\/wp-content\/uploads\/2024\/01\/OffiDocs-Blog-Feature-Images.jpg\",\"width\":2240,\"height\":1260,\"caption\":\"learn excel\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.offidocs.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use the IF Function in Excel?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.offidocs.com\/blog\/#website\",\"url\":\"https:\/\/www.offidocs.com\/blog\/\",\"name\":\"OffiDocs\",\"description\":\"Free Cloud Apps with OffiDocs\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.offidocs.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.offidocs.com\/blog\/#\/schema\/person\/b4df979c363c4cea68464ea87edf90e3\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.offidocs.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f9a06652c90b56b2c5461dbd9975181f6a182d725ca6b2880c0ee4e82e3f88b1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f9a06652c90b56b2c5461dbd9975181f6a182d725ca6b2880c0ee4e82e3f88b1?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/136.243.69.186:19180\/blog\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Use the IF Function in Excel? - OffiDocs","description":"use the IF function in Excel by entering a logical test in the format: =IF(logical_test, value_if_true, value_if_false)","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:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/","og_locale":"en_US","og_type":"article","og_title":"How to Use the IF Function in Excel? - OffiDocs","og_description":"use the IF function in Excel by entering a logical test in the format: =IF(logical_test, value_if_true, value_if_false)","og_url":"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/","og_site_name":"OffiDocs","article_published_time":"2024-01-19T12:39:30+00:00","og_image":[{"width":2240,"height":1260,"url":"https:\/\/www.offidocs.com\/blog\/wp-content\/uploads\/2024\/01\/OffiDocs-Blog-Feature-Images.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/","url":"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/","name":"How to Use the IF Function in Excel? - OffiDocs","isPartOf":{"@id":"https:\/\/www.offidocs.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/#primaryimage"},"image":{"@id":"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/#primaryimage"},"thumbnailUrl":"https:\/\/www.offidocs.com\/blog\/wp-content\/uploads\/2024\/01\/OffiDocs-Blog-Feature-Images.jpg","datePublished":"2024-01-19T12:39:30+00:00","author":{"@id":"https:\/\/www.offidocs.com\/blog\/#\/schema\/person\/b4df979c363c4cea68464ea87edf90e3"},"description":"use the IF function in Excel by entering a logical test in the format: =IF(logical_test, value_if_true, value_if_false)","breadcrumb":{"@id":"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/#primaryimage","url":"https:\/\/www.offidocs.com\/blog\/wp-content\/uploads\/2024\/01\/OffiDocs-Blog-Feature-Images.jpg","contentUrl":"https:\/\/www.offidocs.com\/blog\/wp-content\/uploads\/2024\/01\/OffiDocs-Blog-Feature-Images.jpg","width":2240,"height":1260,"caption":"learn excel"},{"@type":"BreadcrumbList","@id":"https:\/\/www.offidocs.com\/blog\/how-to-use-the-if-function-in-excel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.offidocs.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Use the IF Function in Excel?"}]},{"@type":"WebSite","@id":"https:\/\/www.offidocs.com\/blog\/#website","url":"https:\/\/www.offidocs.com\/blog\/","name":"OffiDocs","description":"Free Cloud Apps with OffiDocs","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.offidocs.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.offidocs.com\/blog\/#\/schema\/person\/b4df979c363c4cea68464ea87edf90e3","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.offidocs.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f9a06652c90b56b2c5461dbd9975181f6a182d725ca6b2880c0ee4e82e3f88b1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f9a06652c90b56b2c5461dbd9975181f6a182d725ca6b2880c0ee4e82e3f88b1?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/136.243.69.186:19180\/blog"]}]}},"_links":{"self":[{"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/posts\/1613","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/comments?post=1613"}],"version-history":[{"count":9,"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/posts\/1613\/revisions"}],"predecessor-version":[{"id":1622,"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/posts\/1613\/revisions\/1622"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/media\/1634"}],"wp:attachment":[{"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/media?parent=1613"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/categories?post=1613"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.offidocs.com\/blog\/wp-json\/wp\/v2\/tags?post=1613"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}