{"id":9514,"date":"2022-05-02T17:32:36","date_gmt":"2022-05-02T17:32:36","guid":{"rendered":"https:\/\/officetuts.net\/excel\/?p=9514"},"modified":"2024-03-26T15:23:49","modified_gmt":"2024-03-26T15:23:49","slug":"find-missing-number-in-sequence","status":"publish","type":"post","link":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/","title":{"rendered":"Find Missing Number in Sequence in Excel"},"content":{"rendered":"\n

Sometimes you may want to identify missing numbers in a sequence in Excel such as product ID numbers. One way would be to manually scroll through the dataset and identify the missing numbers. However, this would be quite a tedious, time-consuming, and error-prone task especially if you are working with large datasets.<\/p>\n\n\n\n

In this tutorial we will explain two methods that can be used to find missing numbers in sequence in Excel more easily and efficiently:<\/p>\n\n\n\n

Method 1 \u2013 Use an Excel formula<\/h2>\n\n\n\n

We can use an Excel formula that combines the SMALL<\/strong>, IF<\/strong>, COUNTIF<\/strong>, and ROW<\/strong> functions.<\/p>\n\n\n\n

We will use the following dataset to demonstrate how this method can be used:<\/p>\n\n\n\n

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

Step 1<\/strong> – Enter the formula:<\/p>\n\n\n\n

=SMALL(IF(COUNTIF($A$1:$A$6,ROW($21:$32))=0,ROW($21:$32),\"\"),ROW(A1))<\/code><\/pre>\n\n\n\n

in cell C1<\/strong>:<\/p>\n\n\n\n

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

Step 2<\/strong> \u2013 The formula is an array formula<\/strong> so enter it by pressing CTRL + SHIFT + ENTER<\/strong>:<\/p>\n\n\n\n

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

Step 3<\/strong> \u2013 Using the Fill Handle<\/strong>, drag the formula down to cell C6<\/strong>:<\/p>\n\n\n\n

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

All the missing numbers in the sequence will be generated.<\/p>\n\n\n\n

The logic of the Formula<\/h3>\n\n\n\n

The formula counts the numbers in the range A1:A6 <\/strong>that match the numbers generated by the ROW($21:$32) <\/strong>which are {21;22;23;24;25;26;27;28;29;30;31;32}. If they are missing, that is, =0, it gives a list of them. If they are not missing, that is, not =0, it returns an empty string (“”), and then returns the first smallest missing value in the current cell.<\/p>\n\n\n\n

The ROW(A1) <\/strong>part of the formula is relative meaning as it is copied down the column C<\/strong>, it becomes ROW(A2) <\/strong>which =2, and returns the second smallest value, ROW(A3) <\/strong>which =3 and returns the third smallest value, and so on.<\/p>\n\n\n\n

The functions used in the formula<\/h3>\n\n\n\n

SMALL<\/strong> function<\/p>\n\n\n\n

It returns the smallest nth <\/sup>value in a range, in the form of the first smallest value, the second smallest value, the third smallest value, and so on.<\/p>\n\n\n\n

IF<\/strong> function<\/p>\n\n\n\n

It tests for counts of 0. If it is TRUE, that is 0, it means the number is missing and so it returns the corresponding value from the array generated by ROW(21:32)<\/strong>.<\/p>\n\n\n\n

COUNTIF<\/strong> function<\/p>\n\n\n\n

It counts the numbers in the range A1:A6<\/strong> that match the range of values returned by the ROW<\/strong> function.<\/p>\n\n\n\n

ROW<\/strong> function<\/p>\n\n\n\n

It returns the row number of a cell reference.<\/p>\n\n\n\n

Stepping through the formula<\/h3>\n\n\n\n

We will step through the formula:<\/p>\n\n\n\n

=SMALL(IF(COUNTIF($A$1:$A$6,ROW($21:$32))=0,ROW($21:$32),\"\"),ROW(A1)) <\/code><\/pre>\n\n\n\n

to see how it works.<\/p>\n\n\n\n

Step 1<\/strong> – The values in range A1:A6<\/strong> and ROW(21:32)<\/strong> are returned:<\/p>\n\n\n\n

=SMALL(IF(COUNTIF({21;27;25;28;30;32},ROW({21;22;23;24;25;26;27;28;29;30;31;32}))=0,ROW($21:$32),\"\"),ROW(A1))<\/code><\/pre>\n\n\n\n

Step 2<\/strong> \u2013 The COUNTIF<\/strong> function returns the counts of values in the array returned by ROW(21:32), <\/strong>that are found in the range A1:A6<\/strong>:<\/p>\n\n\n\n

 =SMALL(IF({1;0;0;0;1;0;1;1;0;1;0;1})=0,ROW($21:$32),\"\"),ROW(A1))<\/code><\/pre>\n\n\n\n

This means that there is 1 count of 21, 0 count of 22, and so on in the range A1:A6<\/strong>.<\/p>\n\n\n\n

Step 3<\/strong> \u2013 The IF<\/strong> function returns TRUE if the number in the resultant array =0 and FALSE if it doesn\u2019t:<\/p>\n\n\n\n

=SMALL(IF({FALSE;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;TRUE;FALSE},{21;22;23;24;25;26;27;28;29;30;31;32),\"\"),ROW(A1))<\/code><\/pre>\n\n\n\n

Step 4<\/strong> \u2013 The IF <\/strong>function evaluates the  value_if_true<\/strong> and value_if_false<\/strong> values:<\/p>\n\n\n\n

=SMALL({\"\";22;23;24;\"\";26;\"\";\"\";29;\"\";31;\"\"},ROW(A1))<\/code><\/pre>\n\n\n\n

We now have the list of missing numbers.<\/p>\n\n\n\n

Step 5<\/strong> \u2013 The ROW(A1) <\/strong>function evaluates to 1:<\/p>\n\n\n\n

=SMALL({\"\";22;23;24;\"\";26;\"\";\"\";29;\"\";31;\"\"},1)<\/code><\/pre>\n\n\n\n

Step 6<\/strong> \u2013 The SMALL<\/strong> function returns the first smallest value in the array which is =22.<\/p>\n\n\n\n

The next smallest value is =23 and so on.<\/p>\n\n\n\n

The Formula method generally works well but it has the limitation of working only with whole numbers that are greater than 0.<\/p>\n\n\n\n

To overcome this limitation we have to turn to the next method of using Excel VBA code.<\/p>\n\n\n\n

Method 2 \u2013 Use Excel VBA Code<\/h2>\n\n\n\n

We will use the following dataset to demonstrate how VBA code can be used to find missing numbers in sequence in Excel:<\/p>\n\n\n\n

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

Step 1<\/strong> \u2013 Press Alt + F11<\/strong> to open the Visual Basic Editor (VBE). Alternatively, you can click Developer >> Visual Basic<\/strong>:<\/p>\n\n\n\n

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

Step 2<\/strong> \u2013 In the VBAProject<\/strong> window right click your workbook and click Insert >> Module:<\/strong><\/p>\n\n\n\n

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

Step 3<\/strong> \u2013 Enter the following code in the new module. Note that comments that are not executable are preceded by an apostrophe (\u2018). The comments explain what the code is doing:<\/p>\n\n\n\n

Sub FindMissingNumbers()\n    Dim InputRange  As Range, OutputRange As Range, NumberFound As Range\n    Dim LowerNum    As Double, UpperNum As Double, count_i As Double, count_j As Double\n    Dim NumRows     As Long, NumColumns As Long\n    Dim Horizontal  As Boolean\n    'Default is to output the results into a column\n    Horizontal = FALSE\n    On Error GoTo ErrorHandler\n    'Ask for the range to check\n    Set InputRange = Application.InputBox(Prompt:=\"Select a range To check :\", _\n    Title:=\"Find missing numbers\", _\n    Default:=Selection.Address, Type:=8)\n    'Find the lowest and highest numbers in the range\/sequence\n    LowerNum = WorksheetFunction.Min(InputRange)\n    UpperNum = WorksheetFunction.Max(InputRange)\n    'Ask where the output is to go\n    Set OutputRange = Application.InputBox(Prompt:=\"Select where you want the result To go :\", _\n    Title:=\"Select cell For Results\", _\n    Default:=Selection.Address, Type:=8)\n    'Check the number of rows and columns in the output range\n    NumRows = OutputRange.Rows.Count\n    NumColumns = OutputRange.Columns.Count\n    'If there are more columns selected than rows, the output is to go horizontally\n    If NumRows < NumColumns Then\n        Horizontal = TRUE\n        'Reset the number of rows to 1 so that output is into the first row\n        NumRows = 1\n    Else\n        'Reset the number of columns to 1 so that output is into the first column\n        NumColumns = 1\n    End If\n    'Initalise counter and loop through sequence from lowest to highest value\n    count_j = 1\n    For count_i = LowerNum To UpperNum\n        'Search for the current value (count_i)\n        Set NumberFound = InputRange.Find(count_i, LookIn:=xlValues, LookAt:=xlWhole)\n        'If it's not found, we have a missing number in the sequence\n        If NumberFound Is Nothing Then\n            'Output the missing number to the sheet\n            If Horizontal Then\n                OutputRange.Cells(NumRows, count_j).Value = count_i\n                count_j = count_j + 1\n            Else\n                OutputRange.Cells(count_j, NumColumns).Value = count_i\n                count_j = count_j + 1\n            End If\n        End If\n    Next count_i\n    Exit Sub\n    ErrorHandler:\n    If InputRange Is Nothing Then\n        MsgBox \"ERROR : No input range specified.\"\n        Exit Sub\n    End If\n    If OutputRange Is Nothing Then\n        MsgBox \"ERROR : No output cell specified.\"\n        Exit Sub\n    End If\n    MsgBox \"An Error has occurred. The macro will end.\"\nEnd Sub\n<\/code><\/pre>\n\n\n\n

Step 4 \u2013 <\/strong>Click the Save<\/strong> button:<\/p>\n\n\n\n

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

Step 5 \u2013 <\/strong>Save the workbook as a .xlsm<\/strong> file:<\/p>\n\n\n\n

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

Code Explanation<\/h3>\n\n\n\n

The code uses VBA’s FIND<\/strong> method on the input range you specify to look for the missing numbers in sequence.<\/p>\n\n\n\n

When the code is executed, Excel prompts asks for the input range in which to search for missing numbers. Use the mouse to select the range.<\/p>\n\n\n\n

You will then be prompted for the output range where the missing numbers will be listed.<\/p>\n\n\n\n

Code Execution<\/h3>\n\n\n\n

Step 1<\/strong> \u2013 Switch to the current workbook by pressing Alt + F11. <\/strong>Alternatively, click on the View Microsoft Excel <\/strong>button:<\/p>\n\n\n\n

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

Step 2<\/strong> \u2013 Press Alt + F8<\/strong> to open the Macro<\/strong> dialog box and select the FindMissingNumbers<\/strong> macro and click on the Run<\/strong> button:<\/p>\n\n\n\n

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

Step 3<\/strong> \u2013 In the Find missing numbers<\/strong> dialog box, enter the input range by selecting using the mouse and then click OK<\/strong>:<\/p>\n\n\n\n

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

Step 4<\/strong> \u2013 Enter the output range and click OK<\/strong>:<\/p>\n\n\n\n

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

The missing numbers will appear in the output range you selected:<\/p>\n\n\n\n

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

<\/p>\n","protected":false},"excerpt":{"rendered":"

Sometimes you may want to identify missing numbers in a sequence in Excel such as product ID numbers. One way would be to…<\/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":[190],"yoast_head":"\nFind Missing Number in Sequence in Excel<\/title>\n<meta name=\"description\" content=\"Learn how to easily find missing numbers in sequence in Excel using formulas. Save time and avoid errors with large datasets. Tutorial inside.\" \/>\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\/find-missing-number-in-sequence\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Find Missing Number in Sequence in Excel\" \/>\n<meta property=\"og:description\" content=\"Learn how to easily find missing numbers in sequence in Excel using formulas. Save time and avoid errors with large datasets. Tutorial inside.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-02T17:32:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T15:23:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/05\/dataset-missing-numbers.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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/\"},\"author\":{\"name\":\"Christopher Sirali\",\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/b303a8b219a448ca09f1e9eed3903370\"},\"headline\":\"Find Missing Number in Sequence in Excel\",\"datePublished\":\"2022-05-02T17:32:36+00:00\",\"dateModified\":\"2024-03-26T15:23:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/\"},\"wordCount\":792,\"publisher\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/05\/dataset-missing-numbers.png\",\"keywords\":[\"pinterest\"],\"articleSection\":[\"examples\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/\",\"url\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/\",\"name\":\"Find Missing Number in Sequence in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/05\/dataset-missing-numbers.png\",\"datePublished\":\"2022-05-02T17:32:36+00:00\",\"dateModified\":\"2024-03-26T15:23:49+00:00\",\"description\":\"Learn how to easily find missing numbers in sequence in Excel using formulas. Save time and avoid errors with large datasets. Tutorial inside.\",\"breadcrumb\":{\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#primaryimage\",\"url\":\"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/05\/dataset-missing-numbers.png\",\"contentUrl\":\"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/05\/dataset-missing-numbers.png\",\"width\":146,\"height\":146},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/officetuts.net\/excel\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Find Missing Number in Sequence 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":"Find Missing Number in Sequence in Excel","description":"Learn how to easily find missing numbers in sequence in Excel using formulas. Save time and avoid errors with large datasets. Tutorial inside.","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\/find-missing-number-in-sequence\/","og_locale":"en_US","og_type":"article","og_title":"Find Missing Number in Sequence in Excel","og_description":"Learn how to easily find missing numbers in sequence in Excel using formulas. Save time and avoid errors with large datasets. Tutorial inside.","og_url":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/","article_published_time":"2022-05-02T17:32:36+00:00","article_modified_time":"2024-03-26T15:23:49+00:00","og_image":[{"url":"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/05\/dataset-missing-numbers.png"}],"author":"Christopher Sirali","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Christopher Sirali","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#article","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/"},"author":{"name":"Christopher Sirali","@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/b303a8b219a448ca09f1e9eed3903370"},"headline":"Find Missing Number in Sequence in Excel","datePublished":"2022-05-02T17:32:36+00:00","dateModified":"2024-03-26T15:23:49+00:00","mainEntityOfPage":{"@id":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/"},"wordCount":792,"publisher":{"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42"},"image":{"@id":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#primaryimage"},"thumbnailUrl":"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/05\/dataset-missing-numbers.png","keywords":["pinterest"],"articleSection":["examples"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/","url":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/","name":"Find Missing Number in Sequence in Excel","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#primaryimage"},"image":{"@id":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#primaryimage"},"thumbnailUrl":"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/05\/dataset-missing-numbers.png","datePublished":"2022-05-02T17:32:36+00:00","dateModified":"2024-03-26T15:23:49+00:00","description":"Learn how to easily find missing numbers in sequence in Excel using formulas. Save time and avoid errors with large datasets. Tutorial inside.","breadcrumb":{"@id":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#primaryimage","url":"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/05\/dataset-missing-numbers.png","contentUrl":"https:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2022\/05\/dataset-missing-numbers.png","width":146,"height":146},{"@type":"BreadcrumbList","@id":"https:\/\/officetuts.net\/excel\/examples\/find-missing-number-in-sequence\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/officetuts.net\/excel\/"},{"@type":"ListItem","position":2,"name":"Find Missing Number in Sequence 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\/9514"}],"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=9514"}],"version-history":[{"count":6,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/9514\/revisions"}],"predecessor-version":[{"id":9540,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/9514\/revisions\/9540"}],"wp:attachment":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/media?parent=9514"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/categories?post=9514"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/tags?post=9514"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}