{"id":11870,"date":"2022-10-04T10:32:08","date_gmt":"2022-10-04T10:32:08","guid":{"rendered":"https:\/\/officetuts.net\/excel\/?p=11870"},"modified":"2024-03-28T13:40:06","modified_gmt":"2024-03-28T13:40:06","slug":"resize-checkbox","status":"publish","type":"post","link":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/","title":{"rendered":"Resize Checkbox in Excel"},"content":{"rendered":"\n
Resize-Excel-Checkbox<\/a>Download File<\/a><\/div>\n\n\n\n

Sometimes we may need to increase the size of the checkboxes in Excel to increase their visibility and accessibility. In this tutorial, we look at different ways of resizing Excel checkboxes.<\/p>\n\n\n\n

How to resize a checkbox in Excel<\/h2>\n\n\n\n

We use the following dataset in our illustration:<\/p>\n\n\n\n

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

Method 1: Zoom in on the worksheet<\/h3>\n\n\n\n

People who have a problem with eyesight would want the checkboxes to be bigger for better visibility. Other people may have a problem checking the checkboxes because of their tiny default size. Increasing the size of the checkboxes can make life easier for such people.<\/p>\n\n\n\n

This method involves increasing the zoom percentage at which the worksheet<\/a> is viewed. The actual dimensions of the checkboxes do not increase but the checkboxes are made to appear bigger.<\/p>\n\n\n\n

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

    \n
  1. Open the worksheet that contains the dataset with checkboxes.<\/li>\n\n\n\n
  2. Click the Zoom slider<\/strong> in the Zoom<\/strong> control on the right end of the status bar.<\/li>\n<\/ol>\n\n\n\n
    \"\"<\/figure>\n\n\n\n
      \n
    1. Slide to the zoom percentage that you like. You can click \u2013 or + to zoom in in gradual increments of 10%. In our example, we slid to a zoom percentage of 300%.<\/li>\n<\/ol>\n\n\n\n
      \"\"<\/figure>\n\n\n\n

      The checkboxes appear bigger and can be accessed easily:<\/p>\n\n\n\n

      \"Shape,<\/figure>\n\n\n\n

      Method 2: Use the Format Control dialog box<\/h3>\n\n\n\n

      This method does not increase the actual dimensions of the checkbox. It only increases the checkbox\u2019s check area. The increased check area makes it easy to check the checkbox without necessarily having to click inside the checkbox.<\/p>\n\n\n\n

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

        \n
      1. Right-click the checkbox and choose Format Control<\/strong> on the shortcut menu.<\/li>\n<\/ol>\n\n\n\n
        \"\"<\/figure>\n\n\n\n

        In the Format Control<\/strong> dialog box, check the Lock aspect ratio checkbox. This ensures that the height and width of the checkbox are increased proportionally.<\/p>\n\n\n\n

        Resize the checkbox using the Height<\/strong> and Width<\/strong> spin boxes and click OK<\/strong>.<\/p>\n\n\n\n

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

        The checkbox check area is increased:<\/p>\n\n\n\n

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

        This means that we can click anywhere in the increased check area to check the checkbox. This can be very helpful for people who have arthritis or other conditions that make it difficult for them to accurately position mouse pointers in the worksheet<\/p>\n\n\n\n

        Method 3: Use Excel VBA<\/h3>\n\n\n\n

        We can use Excel VBA to make symbols that can be resized behave like checkboxes.<\/p>\n\n\n\n

        We first need to insert symbols that resemble checkboxes in the worksheet that contains the dataset.<\/p>\n\n\n\n

        Insert checkbox symbols<\/h3>\n\n\n\n

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

          \n
        1. Select a cell that is outside your dataset. In this case, we select cell E1<\/strong>.<\/li>\n<\/ol>\n\n\n\n
          \"Graphical<\/figure>\n\n\n\n
            \n
          1. Click Insert >> Symbols >> Symbols<\/strong>.<\/li>\n<\/ol>\n\n\n\n
            \"Graphical<\/figure>\n\n\n\n
              \n
            1. In the Symbol<\/strong> dialog box, choose Wingdings<\/strong> in the Font<\/strong> drop-down list.<\/li>\n<\/ol>\n\n\n\n
              \"\"<\/figure>\n\n\n\n
                \n
              1. Scroll down the Symbols<\/strong> list and select the symbol that resembles a blank checkbox and click Insert<\/strong>.<\/li>\n<\/ol>\n\n\n\n
                \"\"<\/figure>\n\n\n\n

                The symbol is placed in cell E1<\/strong>:<\/p>\n\n\n\n

                \"Graphical<\/figure>\n\n\n\n
                  \n
                1. Click the Close<\/strong> button to close the Symbols<\/strong> dialog box.<\/li>\n\n\n\n
                2. Select cell F<\/strong>.<\/li>\n<\/ol>\n\n\n\n
                  \"Graphical<\/figure>\n\n\n\n
                    \n
                  1. Open the Symbols<\/strong> dialog box as explained previously.<\/li>\n\n\n\n
                  2. Scroll down the Symbols<\/strong> list and select the symbol that resembles a checked checkbox. Click Insert<\/strong>.<\/li>\n<\/ol>\n\n\n\n
                    \"\"<\/figure>\n\n\n\n
                      \n
                    1. Click the Close<\/strong> button to close the Symbol<\/strong> dialog box.<\/li>\n<\/ol>\n\n\n\n

                      The symbol of a checked checkbox is placed in cell F1<\/strong>.<\/p>\n\n\n\n

                      \"Graphical<\/figure>\n\n\n\n
                        \n
                      1. Select cell E1<\/strong> which contains the blank checkbox symbol and copy the symbol to four more cells by dragging down the fill handle to cell E5<\/strong>.<\/li>\n<\/ol>\n\n\n\n
                        \"Graphical<\/figure>\n\n\n\n
                          \n
                        1. Copy a blank checkbox symbol to cell F2<\/strong>.<\/li>\n<\/ol>\n\n\n\n
                          \"\"<\/figure>\n\n\n\n

                          Create Excel VBA Code<\/h3>\n\n\n\n

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

                            \n
                          1. In the active worksheet that contains the dataset, press Alt + F11<\/strong> to open the Visual Basic Editor<\/strong>.<\/li>\n\n\n\n
                          2. Click Insert >> Module<\/strong> to insert a module.<\/li>\n\n\n\n
                          3. Copy the following procedures and paste them into the module. Remember to customize them to your requirements.<\/li>\n<\/ol>\n\n\n\n
                            Sub resizeCheckbox(ByRef indexVal As String)\n    If Range(\"E\" & indexVal).Value = Range(\"F1\").Value Then\n        Range(\"E\" & indexVal).Value = Range(\"F2\").Value\n    Else\n        Range(\"E\" & indexVal).Value = Range(\"F1\").Value\n    End If\nEnd Sub\nSub checkBox1()\n    Call resizeCheckbox(1)\nEnd Sub\nSub checkBox2()\n    Call resizeCheckbox(2)\nEnd Sub\nSub checkBox3()\n    Call resizeCheckbox(3)\nEnd Sub\nSub checkBox4()\n    Call resizeCheckbox(4)\nEnd Sub\nSub checkBox5()\n    Call resizeCheckbox(5)\nEnd Sub<\/code><\/pre>\n\n\n\n
                              \n
                            1. Save the procedures and save the workbook as a Macro-Enabled Workbook<\/strong>.<\/li>\n\n\n\n
                            2. Right-click cell E1<\/strong> and choose Copy<\/strong> on the shortcut menu.<\/li>\n<\/ol>\n\n\n\n
                              \"\"<\/figure>\n\n\n\n
                                \n
                              1. Right-click cell C3<\/strong> and choose Linked Picture<\/strong> on the Paste Special<\/strong> flyout menu.<\/li>\n<\/ol>\n\n\n\n
                                \"\"<\/figure>\n\n\n\n
                                  \n
                                1. Use the resizing handles to resize the symbol.<\/li>\n<\/ol>\n\n\n\n
                                  \"A<\/figure>\n\n\n\n

                                  We have resized the symbol:<\/p>\n\n\n\n

                                  \"\"<\/figure>\n\n\n\n
                                    \n
                                  1. Click Picture Format >> Size >> Crop >> Crop<\/strong>.<\/li>\n<\/ol>\n\n\n\n
                                    \"\"<\/figure>\n\n\n\n
                                      \n
                                    1. Remove unwanted areas from the linked picture.<\/li>\n<\/ol>\n\n\n\n
                                      \"Graphical<\/figure>\n\n\n\n

                                      The symbol with the unwanted area removed appears below:<\/p>\n\n\n\n

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

                                      Repeat steps 5 to 8 to copy the checkboxes in range E2:E5 to range C4:C7.<\/p>\n\n\n\n

                                      \"\"<\/figure>\n\n\n\n
                                        \n
                                      1. Right-click the checkbox symbol in cell C3<\/strong> and choose Assign Macro<\/strong> from the shortcut menu.<\/li>\n<\/ol>\n\n\n\n
                                        \"\"<\/figure>\n\n\n\n
                                          \n
                                        1. In the Assign Macro<\/strong> dialog box that appears, select CheckBox1<\/strong> in the Macro name<\/strong> box and click OK.<\/li>\n<\/ol>\n\n\n\n
                                          \"Graphical<\/figure>\n\n\n\n
                                            \n
                                          1. Repeat steps 10 and 11 to assign the remaining macros to the other checkboxes.<\/li>\n\n\n\n
                                          2. Test the checkboxes and see that they work as intended.<\/li>\n<\/ol>\n\n\n\n
                                            \"\"<\/figure>\n\n\n\n

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

                                            Sometimes we are required to increase the size of the checkboxes in Excel to increase their visibility and accessibility. In this tutorial, we looked at different ways of resizing checkboxes in Excel.<\/p>\n","protected":false},"excerpt":{"rendered":"

                                            Sometimes we may need to increase the size of the checkboxes in Excel to increase their visibility and accessibility. In this tutorial, we…<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[170,190],"yoast_head":"\nResize Checkbox in Excel<\/title>\n<meta name=\"description\" content=\"Learn how to resize Excel checkboxes for increased visibility and accessibility. We explore two methods to make the checkboxes appear larger.\" \/>\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\/resize-checkbox\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Resize Checkbox in Excel\" \/>\n<meta property=\"og:description\" content=\"Learn how to resize Excel checkboxes for increased visibility and accessibility. We explore two methods to make the checkboxes appear larger.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-04T10:32:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-28T13:40:06+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/10\/word-image-11870-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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/\"},\"author\":{\"name\":\"Christopher Sirali\",\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/b303a8b219a448ca09f1e9eed3903370\"},\"headline\":\"Resize Checkbox in Excel\",\"datePublished\":\"2022-10-04T10:32:08+00:00\",\"dateModified\":\"2024-03-28T13:40:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/\"},\"wordCount\":774,\"publisher\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/10\/word-image-11870-1.png\",\"keywords\":[\"file\",\"pinterest\"],\"articleSection\":[\"examples\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/\",\"url\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/\",\"name\":\"Resize Checkbox in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/10\/word-image-11870-1.png\",\"datePublished\":\"2022-10-04T10:32:08+00:00\",\"dateModified\":\"2024-03-28T13:40:06+00:00\",\"description\":\"Learn how to resize Excel checkboxes for increased visibility and accessibility. We explore two methods to make the checkboxes appear larger.\",\"breadcrumb\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#primaryimage\",\"url\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/10\/word-image-11870-1.png\",\"contentUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/10\/word-image-11870-1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/officetuts.net\/excel\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resize Checkbox in 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":"Resize Checkbox in Excel","description":"Learn how to resize Excel checkboxes for increased visibility and accessibility. We explore two methods to make the checkboxes appear larger.","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\/resize-checkbox\/","og_locale":"en_US","og_type":"article","og_title":"Resize Checkbox in Excel","og_description":"Learn how to resize Excel checkboxes for increased visibility and accessibility. We explore two methods to make the checkboxes appear larger.","og_url":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/","article_published_time":"2022-10-04T10:32:08+00:00","article_modified_time":"2024-03-28T13:40:06+00:00","og_image":[{"url":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/10\/word-image-11870-1.png"}],"author":"Christopher Sirali","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Christopher Sirali","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#article","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/"},"author":{"name":"Christopher Sirali","@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/b303a8b219a448ca09f1e9eed3903370"},"headline":"Resize Checkbox in Excel","datePublished":"2022-10-04T10:32:08+00:00","dateModified":"2024-03-28T13:40:06+00:00","mainEntityOfPage":{"@id":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/"},"wordCount":774,"publisher":{"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42"},"image":{"@id":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#primaryimage"},"thumbnailUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/10\/word-image-11870-1.png","keywords":["file","pinterest"],"articleSection":["examples"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/","url":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/","name":"Resize Checkbox in Excel","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#primaryimage"},"image":{"@id":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#primaryimage"},"thumbnailUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/10\/word-image-11870-1.png","datePublished":"2022-10-04T10:32:08+00:00","dateModified":"2024-03-28T13:40:06+00:00","description":"Learn how to resize Excel checkboxes for increased visibility and accessibility. We explore two methods to make the checkboxes appear larger.","breadcrumb":{"@id":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#primaryimage","url":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/10\/word-image-11870-1.png","contentUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/10\/word-image-11870-1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/officetuts.net\/excel\/examples\/resize-checkbox\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/officetuts.net\/excel\/"},{"@type":"ListItem","position":2,"name":"Resize Checkbox in 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\/11870"}],"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=11870"}],"version-history":[{"count":3,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/11870\/revisions"}],"predecessor-version":[{"id":15761,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/11870\/revisions\/15761"}],"wp:attachment":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/media?parent=11870"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/categories?post=11870"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/tags?post=11870"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}