View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rachel7 Rachel7 is offline
external usenet poster
 
Posts: 10
Default Returning 2nd smallest value in a range

I can work around the zero's & ensure they're not in the array. Mainly it's
the multiple entries that cause a problem. I need to retrieve
1st,2nd,3rd,4th best values & I wouldn't need to see the duplicate values.
Thanks everyone...

"Bernard Liengme" wrote:

However it does not ignore zeros
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"HARSHAWARDHAN. S .SHASTRI"
wrote in message
...
Hi Rachel,

You can try following formula,

=SMALL(A1:A42,1+FREQUENCY(A1:A42,MIN(A1:A42)))


H S Shastri


================================================== ===

"Rachel7" wrote:

I'm using the SMALL formula to return 2nd smallest value in a range of
cells. Is there a way of the formula excluding empty cells, zero value
cells
& cells with same values in?
Thanks in advance