Identifying Missing Numbers in a Consecutive Series

Written by Allen Wyatt (last updated May 5, 2021)
This tip applies to Excel 2007, 2010, 2013, and 2016


20

Marcya has a long list of sorted numbers in column A of a worksheet. These numbers are supposedly consecutive, but she doesn't know if that is true. Examining the list manually is both tedious and error-prone, so Marcya wonders if there is a way to somehow highlight any "missed numbers" (those that aren't consecutive with the one before) or to compile a list of numbers that were missed in the list.

There are a number of ways you can go about figuring out where there are missing numbers. The first is one I use quite often: I add a helper column next to column A. Assuming your numbers start in cell A1, I put this into cell B2:

=IF(A2<>A1+1,"Error","")

Copy the formula down as many cells as necessary, and you'll easily see the word "Error" next to any value that isn't consecutive to the value just above it. If you prefer to know a bit more about the error, you could use a more detailed formula:

=IF(A2=A1,"Duplicate",IF(A2<>A1+1,"Gap",""))

Another approach is to use conditional formatting on the cells in column A. Follow these steps, again assuming that your values start in cell A1:

  1. Select the range A2 through the last value in column A.
  2. With the Home tab of the ribbon displayed, click the Conditional Formatting option in the Styles group. Excel displays a palette of options related to conditional formatting.
  3. Choose Highlight Cells Rules and then choose More Rules from the resulting submenu. Excel displays the New Formatting Rule dialog box. (See Figure 1.)
  4. Figure 1. The New Formatting Rule dialog box.

  5. In the Select a Rule Type area at the top of the dialog box, choose Use a Formula to Determine Which Cells to Format.
  6. In the Format Values Where This Formula Is True box, enter this formula: =A2<>A1+1
  7. Click Format to display the Format Cells dialog box.
  8. Using the controls in the dialog box, specify a format that you want used to highlight the cells that are not consecutive.
  9. Click OK to dismiss the Format Cells dialog box. The formatting you specified in step 7 should now appear in the preview area for the rule.
  10. Click OK.

Finally, if you want to compile a list of the missing numbers in a consecutive series, you can use an array formula. Place the following into row 1 of an empty column:

=IFERROR(SMALL(IF(COUNTIF($A$1:$A$135,
MIN($A$1:$A$135)+ROW($1:$135)-1)=0, 
MIN($A$1:$A$135)+ROW($1:$135)-1),ROW(A1)),"")

Remember that this is a single array formula, so you need to enter it as a single line using Ctrl+Shift+Enter. You can then copy the formula down a number of cells, until it doesn't return any more values. Also, the formula assumes that your series in in the range A1:A135; if it is not, you'll need to modify the formula to reflect the actual range.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (4315) applies to Microsoft Excel 2007, 2010, 2013, and 2016.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Introducing the Organizer

The Organizer is a great tool for, well, organizing the information stored in your templates. This tip introduces the ...

Discover More

Displaying a Result as Minutes and Seconds

When you use a formula to come up with a result that you want displayed as a time, it can be tricky figuring out how to ...

Discover More

Easily Changing Chart Data Ranges

Want a handy way to make the data ranges for your chart more dynamic? Here are some great ideas you can put to work right ...

Discover More

Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!

More ExcelTips (ribbon)

Counting Occurrences of Words

If you would like to determine how many instances of a particular word appear within a range of text, there are several ...

Discover More

Transposing and Linking

Sometimes it is helpful to look at data that is rotated 90 degrees. Excel allows you to use Paste Special to transpose ...

Discover More

Indirectly Referencing a Cell on a Different Worksheet

Excel includes the powerful INDIRECT function which can be used to assemble references to other cells in your workbook. ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 8 - 5?

2023-04-12 09:18:07

Tzica

Hello, nice array formula.Somehow is limited by the missing range ? I try it on a list with 22 numbers ( a range of 13 to 74, with gaps between 14 and 25 25 to 29 / 29 to 32..an so on).Formula show missing number till 34...and than empty for the other missing number..between 37 and 53 etc..
(see Figure 1 below)

Figure 1. MissingNr


2023-02-24 10:44:19

J. Woolley

@rr1024
Addendum to my previous comment - In case the number needs to be rounded, try this:
=IF(INT(B2+1.5)=INT(B3+0.5),"True","False")
or simply this:
=(INT(B2+1.5)=INT(B3+0.5))
By the way, Microsoft does work consistently, but not always as you expected.


2023-02-23 10:04:48

J. Woolley

@rr1024
You are assuming that the "1 minute counts" have no seconds. If they are derived from date serial numbers like NOW(), then they probably do. Try this:
=IF(INT(B2+1)=INT(B3),"True","False")


2023-02-23 06:08:28

Steve J

@rr1024
as your data I get TRUE, FALSE, FALSE which is correct. You have indicated that B4 = 3 which is the same as B3.

So B3 +1 will not = B4 so will be FALSE

You don't need the =sum element in your formula, =IF(B2+1=B3,"True","False") will work perfectly.

HTH


2023-02-22 18:29:46

rr1024

I have been trying to get this to work all day long and nothing works in excel for any of the IFs I create.
I have a simple list of numbers that represent 1 minute counts, so column B starts with B2=2, B3=3, B4=3 and in column A I have, starting in A3, =IF(SUM(B2+1)=B3,"True","FALSE")
=IF(SUM(B3+1)=B4,"True","FALSE")
=IF(SUM(B4+1)=B5,"True","FALSE")
I have FALSE, FALSE, FALSE column A and I should have True, True, False
Fundamentally this is probably way so many people hate Microsoft because it just does not work consistently.
The whole column is formated for whole numbers except the top header


2022-12-01 05:32:31

Peter Atherton

Damian

The easiest way is to convert the data to a table by selecting a cell in the data and pressing Ctl + t. Table are dynamic and expand as data is added below. To convert it back to a range choose convert to range in the Tools section of the Table menu.

There is also an older method, it is not fully dynamic and it uses a couple of formulas.

=OFFSET(Sheet5!$A$2,0,0,COUNTA(Sheet5!$A$2:A500000),1)

A2 starts the range, they should alway have a Header. The two zeros refer to rows and columns to be offset, we do not want that. COunta counts the Rows with data and the range is limited to half a million to save Excel having to work too hard. The final 1 limits the range to just one column.

It is ages since I last used this method.

Peter


2022-12-01 01:06:44

Damian Barrera

I am having trouble getting the missing numbers once I expand the range. My sequence begins with the number 97680 and ends with 198698. The min number is 97680 (A1) and the max number is 198698 (A99062). So when I revise the range to read A1:A99062 it does not work. Any ideas?


2021-10-06 17:56:36

legally clueless

(see Figure 1 below) does anyone know how to identify the missing numbers if the data is listed in one column separated by a ","?

Figure 1. 


2021-07-30 03:17:56

Peter Atherton

Lona
The formulas for the helper cells are:
=MIN (right(rng)+0) and
=Max(Right(range)+0)

Both are entered as Ctrl + Shift + Enter (CSE) and Excel wraps the formulas in curly brackets. In the code these are cells F3 and F4 and are the values for the variables M and N.

The last post was supposed to include a picture to make this clear, I'll try again.

(see Figure 1 below)

Figure 1. 


2021-07-30 03:00:17

Peter Atherton

Lona,
The following needs two helper cells to get the min & max of the numbers; these are both array formulas. The code works up to numbers 999 and will need to be modified for numbers 1000 - 9999, 10000 - 99999 and so on.

Function AllThere(MyRange As Range)
Dim m As Integer, n As Integer
Dim There As Variant, i As Long, cell As Range
m = [f3]: n = [f4]

ReDim There(m To n)

On Error Resume Next
For Each cell In MyRange
There(Right(cell.Value, 3)) = 1
Next
On Error GoTo 0

AllThere = "Missing: "
For i = m To n
If Not There(i) = 1 Then
AllThere = AllThere & i & ", "
End If
Next i

If Len(AllThere) = 9 Then
AllThere = "All There"
Else
AllThere = Left(AllThere, Len(AllThere) - 2)
End If
End Function

{[fig}]


2021-07-28 11:52:03

Lona

What if my numbers start with two letters, RC_100, RC_101


2021-05-07 03:23:12

Mike

Further to my previous comment, the array formula may fail to identify some gaps.
If, for example, A1 contains 100 and the sorted list is from A1 to A135, the formula will not reveal any gaps greater than 235.
In other words, all gaps greater than (MIN(A1:A135) + 135) will be missed.


2021-05-06 11:57:11

robert Lohman

Mark
The UDF (User Defined Function) that I noted does not care about consecutive numbers. Works with any list of numbers.


2021-05-05 17:10:57

Robert Lohman

Here is a handy little Macro from Mr Excel/ExcelisFun Dueling Excel. It even lists what number(s) is missing. Just set the amount of numbers in the list. In this case it is 1 to 99

Function AllThere(MyRange As Range)
Dim There(1 To 99) As Integer
On Error Resume Next
For Each cell In MyRange
There(cell.Value) = 1
Next
On Error GoTo 0

AllThere = "Missing: "
For i = 1 To 99
If Not There(i) = 1 Then
AllThere = AllThere & i & ", "
End If
Next i

If Len(AllThere) = 9 Then
AllThere = "All There"
Else
AllThere = Left(AllThere, Len(AllThere) - 2)
End If
End Function


2021-05-05 13:44:04

Mark

Is there a way to check for missing numbers, if the list to search from is not in consecutive order?


2021-05-05 10:19:56

Mike

I don't know what I'm doing wrong but if, for example, I create a list with 10 gaps, the copied formula is only finding the first 9. The last one always seems to be missing.


2020-11-03 06:21:28

Peter Atherton

Jair

You can,, as stated in the last paragraph, copy the formula down to get the next value(s), When this is done, the Cell reference in the last part of the formula changes from Row(A1) to Row(A2) and the small value hence uses the fist then the second value.

{=IFERROR(SMALL(IF(COUNTIF($A$1:$A$135, MIN($A$1:$A$135)+ROW($1:$135)-1)=0, MIN($A$1:$A$135)+ROW($1:$135)-1),ROW(A1)),"")}
{=IFERROR(SMALL(IF(COUNTIF($A$1:$A$135, MIN($A$1:$A$135)+ROW($1:$135)-1)=0, MIN($A$1:$A$135)+ROW($1:$135)-1),ROW(A2)),"")}


2020-11-02 18:29:06

Jair

How to display all missing numbers in one column?

If i paste this formula

=IFERROR(SMALL(IF(COUNTIF($A$1:$A$135,
MIN($A$1:$A$135)+ROW($1:$135)-1)=0,
MIN($A$1:$A$135)+ROW($1:$135)-1),ROW(A1)),"")

it will apears only the first missing number how about the next missing gap?


2019-08-05 16:30:52

Gail

This is perfect! You have saved me a ton of time.


2017-09-08 10:09:56

Yvan Loranger

1st solution:
Put in B2 =IF($A2-$A1>column()-1,$A1+column()-1,"") and replicate.
Result:
row col.A col.B col.C col.D
1 -5
2 -1 -4 -3 -2
3 0
4 2 1
5 3

2nd solution:
Put in B2 =IF(A2-A1>1,A1+1&"-"&A2-1,"") and replicate.
Result:
row col.A col.B
1 -5
2 -1 -4--2
3 0
4 2 1-1
5 3


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.