C
CWatters
I'm trying to use
=SMALL(A1:A10;6)
to find the 6th smallest number in A1:A10 but it returns a #NUM error if
there are only 5 fields in the array containing numbers. It doesn't seem to
treat a blank cell as the number zero. Is there a way to supress this
without filling the array with zeros?
Should this work..?
IF(SMALL(A1:A10;6)=#NUM!; 0; SMALL(A1:A10;6))
=SMALL(A1:A10;6)
to find the 6th smallest number in A1:A10 but it returns a #NUM error if
there are only 5 fields in the array containing numbers. It doesn't seem to
treat a blank cell as the number zero. Is there a way to supress this
without filling the array with zeros?
Should this work..?
IF(SMALL(A1:A10;6)=#NUM!; 0; SMALL(A1:A10;6))