Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to be able to use Excel to find the two lowest of 7 values in a
non-contiguous range of cells. I know how to use MIN to find the lowest, but how to find the next lowest? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could assign a name to your non-contiguous range, say "list" (no
quotes), And then try this: =SMALL(list,2) OR you could sort the range, descending, by copying this formula down: =SMALL(list,ROW(A1)) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Bob in Carson" wrote in message ... I want to be able to use Excel to find the two lowest of 7 values in a non-contiguous range of cells. I know how to use MIN to find the lowest, but how to find the next lowest? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Bob,
=SMALL(A1:A7,1) will return the lowest value =SMALL(A1:A7,2) will return the second lowest value etc. To handle the non contiguous part I think you need to put in a helper column to make the range contiguous. If you need the two values in the one cell you could use a formula like =SMALL(A1:A7,1)&"-"&SMALL(A1:A7,2) HTH Martin |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Another one:
=SMALL((A$1,A$4,A$6,A$10,A$15,B$8,C$20),ROWS($1:1) ) Copied down to give Small 2, Small 3,Small 4 etc. Biff "Bob in Carson" wrote in message ... I want to be able to use Excel to find the two lowest of 7 values in a non-contiguous range of cells. I know how to use MIN to find the lowest, but how to find the next lowest? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
comparing two columns of data to find common values | Excel Discussion (Misc queries) | |||
Find differences between two Excel workbooks or worksheets | Excel Discussion (Misc queries) | |||
Excel Range Value issue (Excel 97 Vs Excel 2003) | Excel Discussion (Misc queries) | |||
How do I find the two lowest values in a range? | Excel Worksheet Functions | |||
Creating an EXCEL COUNTIF formula for a range of values | Excel Discussion (Misc queries) |