{"id":9871,"date":"2022-06-03T10:06:47","date_gmt":"2022-06-03T10:06:47","guid":{"rendered":"https:\/\/officetuts.net\/excel\/?p=9871"},"modified":"2024-03-28T13:49:29","modified_gmt":"2024-03-28T13:49:29","slug":"select-first-cell-in-range","status":"publish","type":"post","link":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/","title":{"rendered":"Select the First Cell in the Range in Excel"},"content":{"rendered":"\n
Select-the-First-Cell-in-Range-in-Excel<\/a>Download File<\/a><\/div>\n\n\n\n

In this tutorial, we will look at the following 3 methods that we can use to select the first cell address in a given range.<\/p>\n\n\n\n

You can use this address and retrieve the value of the cell using the INDIRECT<\/strong> function.<\/p>\n\n\n\n

Method 1: ADDRESS with ROW, COLUMN, and MIN and Go To\u2026<\/h2>\n\n\n\n

We will use the following data range named Country_GDP<\/strong> (A2:C6) to show how this method can be used to select the first cell in the range:<\/p>\n\n\n\n

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

The first cell in this data range can be selected by using the following steps:<\/p>\n\n\n\n

    \n
  1. Select Cell F2<\/strong> and type in the formula:<\/li>\n<\/ol>\n\n\n\n
    =ADDRESS(MIN(ROW(Country_GDP)),MIN(COLUMN(Country_GDP))) <\/code><\/pre>\n\n\n\n
    \"\"<\/figure>\n\n\n\n
      \n
    1. Press the Enter<\/strong> key and the reference for the first cell in the named range will be displayed:<\/li>\n<\/ol>\n\n\n\n
      \"\"<\/figure>\n\n\n\n
        \n
      1. Open the Go To<\/strong> dialog box by going  to Home >> Editing >> Find & Select >> Go To\u2026 <\/strong>on the Excel Ribbon:<\/li>\n<\/ol>\n\n\n\n
        \"\"<\/figure>\n\n\n\n

        Alternatively, we can press the keyboard shortcut Ctrl + G<\/strong> to launch the Go To<\/strong> dialog box.<\/p>\n\n\n\n

          \n
        1. In the Go To<\/strong> dialog box that pops up, type in the cell reference that was displayed in step 2 above and press OK:<\/li>\n<\/ol>\n\n\n\n
          \"\"<\/figure>\n\n\n\n

          The first cell in the named range is selected:<\/p>\n\n\n\n

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

          The Go To\u2026<\/strong> feature enables jumping to the first cell in the data range.<\/p>\n\n\n\n

          Explanation of the Formula<\/h3>\n\n\n\n
          =ADDRESS(MIN(ROW(Country_GDP)),MIN(COLUMN(Country_GDP)))<\/code><\/pre>\n\n\n\n

          This formula uses the combination of  ADDRESS, MIN, ROW, and COLUMN functions<\/strong>.<\/p>\n\n\n\n

          The ADDRESS function<\/strong> creates a cell reference as text, given specified row and column numbers.<\/p>\n\n\n\n

          The MIN function<\/strong> returns the smallest number in a set of values.<\/p>\n\n\n\n

          The ROW function<\/strong> returns the row number of a reference.<\/p>\n\n\n\n

          The COLUMN function<\/strong> returns the column number of a reference.<\/p>\n\n\n\n

          In this instance, we want to get the first row and the first column used by the named data range Country_GDP<\/strong> (A2:C6).<\/p>\n\n\n\n

          To get the first row used we use the ROW function <\/strong>and the MIN function<\/strong> as follows:<\/p>\n\n\n\n

          MIN(ROW(Country_GDP))<\/code><\/pre>\n\n\n\n

          Because the data range Country_GDP has more than one row the ROW function returns an array of row numbers:<\/p>\n\n\n\n

          {2;3;4;5;6}<\/strong><\/p>\n\n\n\n

          This array is passed to the MIN function which returns 2 as the smallest value:<\/p>\n\n\n\n

          MIN({2;3;4;5;6})<\/code><\/pre>\n\n\n\n

          To get the first column we use the COLUMN function and the MIN function as follows:<\/p>\n\n\n\n

          MIN(COLUMN(Country_GDP))<\/code><\/pre>\n\n\n\n

          Because the data range Country_GDP has more than one column the COLUMN function returns an array of column numbers:<\/p>\n\n\n\n

          {1;2;3}<\/strong><\/p>\n\n\n\n

          This array is passed to the MIN function which returns 1 as the smallest value:<\/p>\n\n\n\n

          MIN({1;2;3})<\/code><\/pre>\n\n\n\n

          The values returned by the ROW and COLUMN functions are then passed to the ADDRESS function which creates a reference to the cell at row 2 and column 1:<\/p>\n\n\n\n

          =ADDRESS(2,1)<\/code><\/pre>\n\n\n\n

          It returns an absolute reference of $A$2<\/strong>. If we want to get a relative reference, we need to input value 4 as the third argument as follows:<\/p>\n\n\n\n

          =ADDRESS(MIN(ROW(Country_GDP)),MIN(COLUMN(Country_GDP)),4)<\/code><\/pre>\n\n\n\n

          This will return a relative cell reference of A2<\/strong>.<\/p>\n\n\n\n

          Method 2: Use CELL together with the INDEX and Go To…<\/h2>\n\n\n\n

          We will use the following data range named Country<\/strong> to show how this method can be used to select the first cell in the range:<\/p>\n\n\n\n

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

          The first cell in the named range can be selected using the following steps:<\/p>\n\n\n\n

            \n
          1. Select Cell D2<\/strong> and type in the formula:<\/li>\n<\/ol>\n\n\n\n
            =CELL(\"address\",INDEX(Country,1,1))<\/code><\/pre>\n\n\n\n
            \"\"<\/figure>\n\n\n\n
              \n
            1. Press the Enter key to display the reference of the first cell in the range:<\/li>\n<\/ol>\n\n\n\n
              \"\"<\/figure>\n\n\n\n
                \n
              1. Press the keyboard shortcut Ctrl + G<\/strong> to launch the Go To<\/strong> dialog box. Alternatively, you can go to Home >> Editing >> Find & Select >> Go To \u2026 <\/strong>on the Excel Ribbon.<\/li>\n\n\n\n
              2. In the Go To<\/strong> dialog box that pops up type in the cell reference that was displayed in step 2 above and press OK:<\/li>\n<\/ol>\n\n\n\n
                \"\"<\/figure>\n\n\n\n

                The first cell in the range is selected:<\/p>\n\n\n\n

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

                The Go To<\/strong> feature enables jumping to the first cell in the data range.<\/p>\n\n\n\n

                Explanation of the Formula<\/h3>\n\n\n\n
                =CELL(\"address\",INDEX(Country,1,1))<\/code><\/pre>\n\n\n\n

                This formula uses the combination of the CELL <\/strong>and INDEX <\/strong>functions.<\/p>\n\n\n\n

                The CELL <\/strong>function returns information about the formatting, location, or contents of the first cell, according to the sheet’s reading order, in a reference.<\/p>\n\n\n\n

                The INDEX <\/strong>function returns a value or reference of the cell at the intersection of a particular row and column, in a given range.<\/p>\n\n\n\n

                In this instance, we want to get the first row and the first column used by the named data range Country<\/strong> (A2:B6).<\/p>\n\n\n\n

                We give the INDEX function the arguments 1 for row number, 1 for column number, and Country for array:<\/p>\n\n\n\n

                INDEX(Country,1,1)<\/code><\/pre>\n\n\n\n

                It returns a reference to A2<\/strong>.<\/p>\n\n\n\n

                We then use the CELL <\/strong>function together with ”address’<\/strong>‘, to show the address of the first cell in the range.<\/p>\n\n\n\n

                Method 3: Use the Excel VBA<\/h2>\n\n\n\n

                We will use the following data range named Country_GDP2<\/strong> to show how this method can be used to select the first cell in a range:<\/p>\n\n\n\n

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

                To apply the Excel VBA to select the first cell in a named range, we use the steps below:<\/p>\n\n\n\n

                  \n
                1. Press Alt + F11<\/strong> to open the Visual Basic Editor (VBE). <\/strong>Alternatively, go to Developer >> Code >> Visual Basic<\/strong> on the Excel Ribbon:<\/li>\n<\/ol>\n\n\n\n
                  \"\"<\/figure>\n\n\n\n
                    \n
                  1. In the Project Window<\/strong> of the Visual Basic Editor right-click the workbook and insert a new module:<\/li>\n<\/ol>\n\n\n\n
                    \"\"<\/figure>\n\n\n\n
                      \n
                    1. In the new module type in the following code:<\/li>\n<\/ol>\n\n\n\n
                      Sub SelectFirstCell()\n    Dim myRange As Range\n    Set myRange = Range(\"Country_GDP2\")\n    myRange(1).Select\nEnd Sub\n<\/code><\/pre>\n\n\n\n
                        \n
                      1. Save the module and the workbook as a macro-enabled workbook<\/strong>.<\/li>\n\n\n\n
                      2. Press Alt + F11<\/strong> to switch back to the active worksheet. Alternatively, click the View Microsoft Excel<\/strong> button:<\/li>\n<\/ol>\n\n\n\n
                        \"\"<\/figure>\n\n\n\n
                          \n
                        1. Press Alt + F8<\/strong> to launch the Macro dialog box<\/strong>. Alternatively, go to Developer >> Code >> Macros<\/strong> on the Excel Ribbon:<\/li>\n<\/ol>\n\n\n\n
                          \"\"<\/figure>\n\n\n\n
                            \n
                          1. In the Macro dialog box select the SelectFirstCell<\/strong> Macro and click Run<\/strong>:<\/li>\n<\/ol>\n\n\n\n
                            \"\"<\/figure>\n\n\n\n

                            The first cell in the data range Country_GDP2 i<\/strong>s selected:<\/p>\n\n\n\n

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

                            Explanation of the code<\/h3>\n\n\n\n
                            Sub SelectFirstCell()\n    Dim myRange As Range\n    Set myRange = Range(\"Country_GDP2\")\n    myRange(1).Select\nEnd Sub\n<\/code><\/pre>\n\n\n\n

                            Using the Dim statement, the myRange<\/strong> variable is declared as a range object.<\/p>\n\n\n\n

                            The Set statement, is used to assign the range object Country_GDP2<\/strong> to the myRange<\/strong> variable.<\/p>\n\n\n\n

                            The select method of the Range object is used to select the first cell in the named range.<\/p>\n\n\n\n

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

                            In this tutorial, we have explored 3 methods that we can use to select the first cell in a data range in Excel.<\/p>\n\n\n\n

                            We can use the ADDRESS function <\/strong>together with the ROW, COLUMN, MIN functions,<\/strong> and the Go To\u2026 feature<\/strong>. We can also use the CELL function <\/strong>together with the INDEX function<\/strong> and Go To feature<\/strong>. Lastly, we can use the Excel VBA.<\/p>\n\n\n\n

                            You can use the method that you are most comfortable with and best fits your work situation.<\/p>\n","protected":false},"excerpt":{"rendered":"

                            In this tutorial, we will look at the following 3 methods that we can use to select the first cell address in a…<\/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":"\nSelect the First Cell in the Range in Excel<\/title>\n<meta name=\"description\" content=\"Learn 3 methods to select the first cell in a range in Excel. Use the address with row, column, and min.\" \/>\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\/select-first-cell-in-range\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Select the First Cell in the Range in Excel\" \/>\n<meta property=\"og:description\" content=\"Learn 3 methods to select the first cell in a range in Excel. Use the address with row, column, and min.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-03T10:06:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-28T13:49:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/06\/country-gdp.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=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/\"},\"author\":{\"name\":\"Christopher Sirali\",\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/b303a8b219a448ca09f1e9eed3903370\"},\"headline\":\"Select the First Cell in the Range in Excel\",\"datePublished\":\"2022-06-03T10:06:47+00:00\",\"dateModified\":\"2024-03-28T13:49:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/\"},\"wordCount\":1059,\"publisher\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/06\/country-gdp.png\",\"keywords\":[\"file\",\"pinterest\"],\"articleSection\":[\"examples\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/\",\"url\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/\",\"name\":\"Select the First Cell in the Range in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/06\/country-gdp.png\",\"datePublished\":\"2022-06-03T10:06:47+00:00\",\"dateModified\":\"2024-03-28T13:49:29+00:00\",\"description\":\"Learn 3 methods to select the first cell in a range in Excel. Use the address with row, column, and min.\",\"breadcrumb\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#primaryimage\",\"url\":\"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/06\/country-gdp.png\",\"contentUrl\":\"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/06\/country-gdp.png\",\"width\":454,\"height\":158},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/officetuts.net\/excel\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Select the First Cell in the Range 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":"Select the First Cell in the Range in Excel","description":"Learn 3 methods to select the first cell in a range in Excel. Use the address with row, column, and min.","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\/select-first-cell-in-range\/","og_locale":"en_US","og_type":"article","og_title":"Select the First Cell in the Range in Excel","og_description":"Learn 3 methods to select the first cell in a range in Excel. Use the address with row, column, and min.","og_url":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/","article_published_time":"2022-06-03T10:06:47+00:00","article_modified_time":"2024-03-28T13:49:29+00:00","og_image":[{"url":"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/06\/country-gdp.png"}],"author":"Christopher Sirali","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Christopher Sirali","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#article","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/"},"author":{"name":"Christopher Sirali","@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/b303a8b219a448ca09f1e9eed3903370"},"headline":"Select the First Cell in the Range in Excel","datePublished":"2022-06-03T10:06:47+00:00","dateModified":"2024-03-28T13:49:29+00:00","mainEntityOfPage":{"@id":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/"},"wordCount":1059,"publisher":{"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42"},"image":{"@id":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#primaryimage"},"thumbnailUrl":"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/06\/country-gdp.png","keywords":["file","pinterest"],"articleSection":["examples"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/","url":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/","name":"Select the First Cell in the Range in Excel","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#primaryimage"},"image":{"@id":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#primaryimage"},"thumbnailUrl":"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/06\/country-gdp.png","datePublished":"2022-06-03T10:06:47+00:00","dateModified":"2024-03-28T13:49:29+00:00","description":"Learn 3 methods to select the first cell in a range in Excel. Use the address with row, column, and min.","breadcrumb":{"@id":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#primaryimage","url":"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/06\/country-gdp.png","contentUrl":"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/06\/country-gdp.png","width":454,"height":158},{"@type":"BreadcrumbList","@id":"https:\/\/officetuts.net\/excel\/examples\/select-first-cell-in-range\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/officetuts.net\/excel\/"},{"@type":"ListItem","position":2,"name":"Select the First Cell in the Range 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\/9871"}],"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=9871"}],"version-history":[{"count":6,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/9871\/revisions"}],"predecessor-version":[{"id":15415,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/9871\/revisions\/15415"}],"wp:attachment":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/media?parent=9871"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/categories?post=9871"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/tags?post=9871"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}