From: Iriemon on
I have a series of numbers in one column (sample):

1
2
4
5
7
16


What formula would find the smallest available number? In other words how
would I find "3"?


From: Bernd P on
Hello,

Array-enter
=INDEX(ROW(INDIRECT(MIN(A1:A6)&":"&MAX(A1:A6))),MATCH(TRUE,ISNA(MATCH(ROW(INDIRECT(MIN(A1:A6)&":"&MAX(A1:A6))),A1:A6,0)),
0))

Regards,
Bernd
From: T. Valko on
Assuming the range of numbers is 1 to 16.

Array entered** :

=SMALL(IF(ISNA(MATCH(ROW(INDIRECT("1:16")),A2:A7,0)),ROW(INDIRECT("1:16"))),1)

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

--
Biff
Microsoft Excel MVP


"Iriemon" <Iriemon(a)discussions.microsoft.com> wrote in message
news:DDAA5B97-47B4-4875-83E3-D9882A01FE63(a)microsoft.com...
>I have a series of numbers in one column (sample):
>
> 1
> 2
> 4
> 5
> 7
> 16
>
>
> What formula would find the smallest available number? In other words how
> would I find "3"?
>
>