View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
TroyW[_2_] TroyW[_2_] is offline
external usenet poster
 
Posts: 94
Default Available serial numbers...

I'm assuming you have a column of data that looks like numbers but they are
really entered as text.
A1: '1001
A2: '1002
A3: '1003
....
A10: '1010

You can place the following ARRAY formula in cell C1 to get the lowest
value.
C1: =MIN(VALUE(A1:A10))
--Important-- Finish typing the entry with: Ctrl Shift Enter

If done correctly, the value will be displayed and the text in the EditBar
will look like this:
{=MIN(VALUE(A1:A10))}
Note the curly brackets.

Troy

"Steff_DK " wrote in message
...
I want to check a range for available serial numbers.

The numbers run from 1001 and up, but as the cases close, some might
become available again.

E.g. 1004 could be deleted from the range (becoming available again)
while 1005 and so on is still taken...

How do I check the range "case" for lowest available number starting at
1001, and return it as an integer?

Thanks


---
Message posted from http://www.ExcelForum.com/