Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default find two (2) lowest values in a range (Excel)

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default find two (2) lowest values in a range (Excel)

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 860
Default find two (2) lowest values in a range (Excel)

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default find two (2) lowest values in a range (Excel)

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
comparing two columns of data to find common values patman Excel Discussion (Misc queries) 2 July 25th 06 03:05 PM
Find differences between two Excel workbooks or worksheets savage_planet Excel Discussion (Misc queries) 0 September 19th 05 09:27 PM
Excel Range Value issue (Excel 97 Vs Excel 2003) Keeno Excel Discussion (Misc queries) 2 June 13th 05 02:01 PM
How do I find the two lowest values in a range? dlroelike Excel Worksheet Functions 3 February 21st 05 12:12 AM
Creating an EXCEL COUNTIF formula for a range of values Pat Walsh Excel Discussion (Misc queries) 5 January 21st 05 02:57 PM


All times are GMT +1. The time now is 11:50 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"