View Single Post
  #5   Report Post  
B. R.Ramachandran
 
Posts: n/a
Default

Hi Chet,

The following two approaches may work.

First arrange your data in ascending order.
Let's say you have 900 values, and that the first value is 1AW00001 and it
is in A1, and the last value is 1AW01000 and it is in A900; so there are 100
missing values)
Create a helper column (say B) with consecutive numbers (1AW00001 in B1,
1AW00002 in B2,......1AW01000 in B1000). Note that this column would be
longer since it contains ALL the values in your range including the missing
values.

Approach 1 (Using Conditional Formatting)

Highlight B2, go to 'Conditional Formatting' in the Format menu;
Select "Formula Is" and enter the formula,
=ISNUMBER(MATCH(B1,$A$1:$A$900,0))+1=1
and choose an appropriate formatting (font type, font color, or cell
shading) to easily identify the missing values. And of course, extend that
conditional formatting criterion (you could use conditional formatting
painter) to the entire column B.
This should identify all the missing values.

Approach 2:

In this approach you need another helper column (say C). In C1 enter the
formula,
=IF(ISNUMBER(MATCH(B1,$A$1:$A$900,0))," ",B1)
and fill-in the formula down to C1000.

Hope one of these works for you.

Regards,
B.R. Ramachandran





"Chet-a-roo" wrote:

I have a large list of serial numbers like (1AW15648). I need to identify
numbers that are missing.

Thanks,

Chet Sheetz

PS I am using Excel 2003