{"id":11213,"date":"2022-08-08T11:27:15","date_gmt":"2022-08-08T11:27:15","guid":{"rendered":"https:\/\/officetuts.net\/excel\/?p=11213"},"modified":"2024-02-19T14:52:22","modified_gmt":"2024-02-19T14:52:22","slug":"find-the-area-of-a-circle","status":"publish","type":"post","link":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/","title":{"rendered":"Find the Area of a Circle Using Excel"},"content":{"rendered":"\n
Find-the-Area-of-a-Circle<\/a>Download File<\/a><\/div>\n\n\n\n

The area of a circle is the extent of the two-dimensional surface enclosed within the circumference of the circle. It is measured in square units. We can find the area of a circle using Excel\u2019s functions.<\/p>\n\n\n\n

In this tutorial, we will use three examples to explain how to find the area of a circle using Excel. The formulas that will be used in the examples are derived from the formulas used in algebra to calculate the area of a circle.<\/p>\n\n\n\n

We will first describe parts of a circle and then explain three algebraic formulas used in calculating the area of a circle.<\/p>\n\n\n\n

Parts of a circle<\/h2>\n\n\n\n

A circle has three parts: radius, diameter, and circumference.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n
    \n
  • Radius<\/strong>. This is the length of the line segment between the center and circumference of a circle. It is normally represented in formulas by the letter \u201cr\u201d.<\/li>\n\n\n\n
  • Diameter<\/strong>. This is the length of a straight line passing through the center of a circle and connecting two points on the circumference. It is twice the length of the radius of a circle. It is normally represented in formulas by the letter \u201cd\u201d.<\/li>\n\n\n\n
  • Circumference<\/strong>. This is the length of the closed curve of a circle. It is normally represented in formulas by the letter \u201cC\u201d.<\/li>\n<\/ul>\n\n\n\n

    If any of the three parts of a circle is known, the area of the circle can be calculated easily in Excel using formulas.<\/p>\n\n\n\n

    Formulas used in algebra to calculate the area of a circle<\/h2>\n\n\n\n

    We can calculate the area of a circle using the following formulas used in algebra:<\/p>\n\n\n\n

      \n
    • Area = \u03c0r2<\/sup><\/strong>, where Pi (\u03c0)<\/strong> is =22\/7 or 3.14 and \u201cr\u201d is the radius of the circle. Pi (\u03c0) is a mathematical constant that refers to the ratio of circumference to diameter of any circle. We use this formula to calculate the area of a circle given its radius.<\/li>\n\n\n\n
    • Area = \u00bc \u03c0d2<\/sup><\/strong>, where \u201cd\u201d is the diameter of the circle. We use this formula to calculate the area of a circle given its diameter.<\/li>\n\n\n\n
    • Area = C2<\/sup>\/4\u03c0<\/strong>, where \u201cC\u201d is the circumference of the circle. We use this formula to calculate the area of a circle given its circumference.<\/li>\n<\/ul>\n\n\n\n

      Examples of calculating the area of a circle using Excel<\/h2>\n\n\n\n

      We will give three examples in the way of explaining how we can find the area of a circle in Excel.<\/p>\n\n\n\n

      Example 1: Calculate the area of a circle given its radius<\/h3>\n\n\n\n

      In this example, we find the area of a circle that has a radius of 10 units.<\/p>\n\n\n\n

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

      We use the following steps:<\/p>\n\n\n\n

        \n
      1. Select cell B2<\/strong> and type in the following formula:<\/li>\n<\/ol>\n\n\n\n
        =PI()*POWER(A2,2)<\/code><\/pre>\n\n\n\n
        \"\"<\/figure>\n\n\n\n
          \n
        1. Press the Enter key.<\/li>\n<\/ol>\n\n\n\n
          \"\"<\/figure>\n\n\n\n
            \n
          1. Select cell B2<\/strong> and click Home >> Number >> Decrease Decimal<\/strong> several times to show fewer decimal places.<\/li>\n<\/ol>\n\n\n\n
            \"\"<\/figure>\n\n\n\n

            In this case, we have decreased the result to two decimal places:<\/p>\n\n\n\n

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

            Explanation of the formula<\/strong><\/p>\n\n\n\n

            =PI()*POWER(A2,2)<\/code><\/pre>\n\n\n\n
              \n
            • This formula is derived from the algebraic formula of Area = \u03c0r2<\/sup><\/strong>.<\/li>\n\n\n\n
            • This formula uses the PI<\/strong> and POWER<\/strong> functions to compute the area of the circle.<\/li>\n\n\n\n
            • The PI function has no arguments and returns the mathematical constant of Pi<\/strong>, accurate to 15 digits.<\/li>\n\n\n\n
            • The POWER function returns the result of a number raised to power. Its syntax is POWER(number, power)<\/strong>. The numbe<\/strong>r argument is required, and it is the base number. The power<\/strong> argument is required, and it is the exponent to which the base number is raised.<\/li>\n\n\n\n
            • In this case, the POWER function returns the result of 10 raised to the power of 2. The result is then multiplied by the mathematical constant of Pi. The value returned is the area of the circle.<\/li>\n<\/ul>\n\n\n\n

              Example 2: Calculate the area of a circle given its diameter<\/h3>\n\n\n\n

              In this example, we find the area of a circle that has a diameter of 20 units.<\/p>\n\n\n\n

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

              We use the following steps:<\/p>\n\n\n\n

                \n
              1. Select cell B2<\/strong> and type in the formula:<\/li>\n<\/ol>\n\n\n\n
                =(PI()*POWER(A2,2))\/4<\/code><\/pre>\n\n\n\n
                \"\"<\/figure>\n\n\n\n
                  \n
                1. Press the Enter key.<\/li>\n<\/ol>\n\n\n\n
                  \"Table\n\nDescription<\/figure>\n\n\n\n
                    \n
                  1. If need be decrease the result to show fewer decimal places as explained in Example 2.<\/li>\n<\/ol>\n\n\n\n

                    Explanation of the formula<\/strong><\/p>\n\n\n\n

                    =(PI()*POWER(A2,2))\/4<\/code><\/pre>\n\n\n\n
                      \n
                    • This formula is derived from the algebraic formula of Area = \u00bc \u03c0d2<\/sup><\/strong>.<\/li>\n\n\n\n
                    • The POWER function returns the value of the diameter raised to the power of 2. This result is multiplied by Pi and then the product is divided by four. The result returned is the area of the circle.<\/li>\n<\/ul>\n\n\n\n

                      Example 3: Calculate the area of a circle given the circumference<\/h3>\n\n\n\n

                      In this example, we find the area of a circle that has a circumference of 62.83 units.<\/p>\n\n\n\n

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

                      We proceed as follows:<\/p>\n\n\n\n

                        \n
                      1. Select cell B2<\/strong> and type in the formula:<\/li>\n<\/ol>\n\n\n\n
                        =POWER(A2,2)\/(PI()*4)<\/code><\/pre>\n\n\n\n
                        \"\"<\/figure>\n\n\n\n
                          \n
                        1. Press the Enter key.<\/li>\n<\/ol>\n\n\n\n
                          \"Table\n\nDescription<\/figure>\n\n\n\n
                            \n
                          1. If need be decrease the result to show fewer decimal places as explained in Example 2<\/li>\n<\/ol>\n\n\n\n

                            Explanation of the formula<\/strong><\/p>\n\n\n\n

                            =POWER(A2,2)\/(PI()*4)<\/code><\/pre>\n\n\n\n
                              \n
                            • This formula is derived from the algebraic formula of Area = C2<\/sup>\/4\u03c0<\/strong>.<\/li>\n\n\n\n
                            • According to the order of operations (PI()*4) is computed first because it is enclosed in brackets.<\/li>\n\n\n\n
                            • According to the order of operations POWER(A2,2) is calculated next because it has an exponent.<\/li>\n\n\n\n
                            • The result of POWER(A2,2) is finally divided by the result of (PI()*4) according to the order of operations. The value returned is the area of the circle.<\/li>\n<\/ul>\n\n\n\n

                              Conclusion<\/h2>\n\n\n\n

                              For us to use Excel to find the area of a circle we must first understand the formulas used in algebra to calculate the area of a circle. The formulas that we use in Excel are derived from these formulas used in algebra.<\/p>\n\n\n\n

                              In this tutorial, we have explained the three formulas used in algebra to calculate the area of a circle.<\/p>\n\n\n\n

                              We have given three examples to explain how we can find the area of a circle in Excel: how to find the area of a circle given the radius, how to find the area of a circle given the diameter, and how to find the area of a circle given the circumference.<\/p>\n\n\n\n

                              You can use any of the examples depending on your situation.<\/p>\n","protected":false},"excerpt":{"rendered":"

                              The area of a circle is the extent of the two-dimensional surface enclosed within the circumference of the circle. It is measured in…<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23],"tags":[170],"yoast_head":"\nFind the Area of a Circle Using Excel<\/title>\n<meta name=\"description\" content=\"Learn how to find the area of a circle using Excel with formulas derived from algebra. Three examples are shown with instructions.\" \/>\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\/formulas\/find-the-area-of-a-circle\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Find the Area of a Circle Using Excel\" \/>\n<meta property=\"og:description\" content=\"Learn how to find the area of a circle using Excel with formulas derived from algebra. Three examples are shown with instructions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-08T11:27:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-19T14:52:22+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/08\/word-image-11213-1.png\" \/>\n<meta name=\"author\" content=\"Christopher Sirali\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Sirali\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/\"},\"author\":{\"name\":\"Christopher Sirali\",\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/b303a8b219a448ca09f1e9eed3903370\"},\"headline\":\"Find the Area of a Circle Using Excel\",\"datePublished\":\"2022-08-08T11:27:15+00:00\",\"dateModified\":\"2024-02-19T14:52:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/\"},\"wordCount\":965,\"publisher\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/08\/word-image-11213-1.png\",\"keywords\":[\"file\"],\"articleSection\":[\"formulas\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/\",\"url\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/\",\"name\":\"Find the Area of a Circle Using Excel\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/08\/word-image-11213-1.png\",\"datePublished\":\"2022-08-08T11:27:15+00:00\",\"dateModified\":\"2024-02-19T14:52:22+00:00\",\"description\":\"Learn how to find the area of a circle using Excel with formulas derived from algebra. Three examples are shown with instructions.\",\"breadcrumb\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#primaryimage\",\"url\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/08\/word-image-11213-1.png\",\"contentUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/08\/word-image-11213-1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/officetuts.net\/excel\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Find the Area of a Circle Using Excel\"}]},{\"@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.\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/b303a8b219a448ca09f1e9eed3903370\",\"name\":\"Christopher Sirali\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/21aaff468311813001dc2723f1937cf0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/21aaff468311813001dc2723f1937cf0?s=96&d=mm&r=g\",\"caption\":\"Christopher Sirali\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Find the Area of a Circle Using Excel","description":"Learn how to find the area of a circle using Excel with formulas derived from algebra. Three examples are shown with instructions.","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\/formulas\/find-the-area-of-a-circle\/","og_locale":"en_US","og_type":"article","og_title":"Find the Area of a Circle Using Excel","og_description":"Learn how to find the area of a circle using Excel with formulas derived from algebra. Three examples are shown with instructions.","og_url":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/","article_published_time":"2022-08-08T11:27:15+00:00","article_modified_time":"2024-02-19T14:52:22+00:00","og_image":[{"url":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/08\/word-image-11213-1.png"}],"author":"Christopher Sirali","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Christopher Sirali","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#article","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/"},"author":{"name":"Christopher Sirali","@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/b303a8b219a448ca09f1e9eed3903370"},"headline":"Find the Area of a Circle Using Excel","datePublished":"2022-08-08T11:27:15+00:00","dateModified":"2024-02-19T14:52:22+00:00","mainEntityOfPage":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/"},"wordCount":965,"publisher":{"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42"},"image":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#primaryimage"},"thumbnailUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/08\/word-image-11213-1.png","keywords":["file"],"articleSection":["formulas"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/","url":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/","name":"Find the Area of a Circle Using Excel","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#primaryimage"},"image":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#primaryimage"},"thumbnailUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/08\/word-image-11213-1.png","datePublished":"2022-08-08T11:27:15+00:00","dateModified":"2024-02-19T14:52:22+00:00","description":"Learn how to find the area of a circle using Excel with formulas derived from algebra. Three examples are shown with instructions.","breadcrumb":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#primaryimage","url":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/08\/word-image-11213-1.png","contentUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/08\/word-image-11213-1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/officetuts.net\/excel\/formulas\/find-the-area-of-a-circle\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/officetuts.net\/excel\/"},{"@type":"ListItem","position":2,"name":"Find the Area of a Circle Using Excel"}]},{"@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."},{"@type":"Person","@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/b303a8b219a448ca09f1e9eed3903370","name":"Christopher Sirali","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/21aaff468311813001dc2723f1937cf0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/21aaff468311813001dc2723f1937cf0?s=96&d=mm&r=g","caption":"Christopher Sirali"}}]}},"_links":{"self":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/11213"}],"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\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/comments?post=11213"}],"version-history":[{"count":4,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/11213\/revisions"}],"predecessor-version":[{"id":15539,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/11213\/revisions\/15539"}],"wp:attachment":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/media?parent=11213"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/categories?post=11213"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/tags?post=11213"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}