Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 454
Default Return 2nd Lowest Value Q

The formula below returns the the name associated with the lowest
value in a range. How would I tweak this formula to return the 2nd
lowest value?

INDEX(A8:A34,MATCH(MIN(G8:G34),G8:G34,0))

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 806
Default Return 2nd Lowest Value Q

If your min value does not occur more than once:
=INDEX(A8:A34,MATCH(SMALL(G8:G34,2),G8:G34,))

Regards,
Bernd

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Return 2nd Lowest Value Q

Use the SMALL function, like this:

INDEX(A8:A34,MATCH(SMALL(G8:G34,2),G8:G34,0))

Change the 2 to 3, 4, 5 etc to get the next smallest.

Hope this helps.

Pete

On Oct 30, 9:00 am, Sean wrote:
The formula below returns the the name associated with the lowest
value in a range. How would I tweak this formula to return the 2nd
lowest value?

INDEX(A8:A34,MATCH(MIN(G8:G34),G8:G34,0))



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 213
Default Return 2nd Lowest Value Q

This was very helpful for me however i need a little more help if possible. I
am analyzing statistics for a sport (hockey) sometimes two players could have
the same value as an example player 1 has 5 goals player 2 has 8 goals and
player 3 has 5 goals. The result of this formula takes player 1 each time as
the result. How can i tweak this formula to show all the players even if they
are tied and in order? As Player 2 - 8 player 1-5 player 3-5

"Pete_UK" wrote:

Use the SMALL function, like this:

INDEX(A8:A34,MATCH(SMALL(G8:G34,2),G8:G34,0))

Change the 2 to 3, 4, 5 etc to get the next smallest.

Hope this helps.

Pete

On Oct 30, 9:00 am, Sean wrote:
The formula below returns the the name associated with the lowest
value in a range. How would I tweak this formula to return the 2nd
lowest value?

INDEX(A8:A34,MATCH(MIN(G8:G34),G8:G34,0))




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Return 2nd Lowest Value Q

Hi Randy,

have a look at this thread from a few days ago - it covers your
scenario exactly:

http://groups.google.com/group/micro...f0d7e749fdae46

Hope this helps.

Pete

On Oct 30, 8:10 pm, Randy wrote:
This was very helpful for me however i need a little more help if possible. I
am analyzing statistics for a sport (hockey) sometimes two players could have
the same value as an example player 1 has 5 goals player 2 has 8 goals and
player 3 has 5 goals. The result of this formula takes player 1 each time as
the result. How can i tweak this formula to show all the players even if they
are tied and in order? As Player 2 - 8 player 1-5 player 3-5



"Pete_UK" wrote:
Use the SMALL function, like this:


INDEX(A8:A34,MATCH(SMALL(G8:G34,2),G8:G34,0))


Change the 2 to 3, 4, 5 etc to get the next smallest.


Hope this helps.


Pete


On Oct 30, 9:00 am, Sean wrote:
The formula below returns the the name associated with the lowest
value in a range. How would I tweak this formula to return the 2nd
lowest value?


INDEX(A8:A34,MATCH(MIN(G8:G34),G8:G34,0))- Hide quoted text -


- Show quoted text -





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 256
Default Return 2nd Lowest Value Q

I'm not sure why everyone is so hung up on using formulas to
accomplish this. Why not use a PivotTable instead? It's faster and
easier, and once it's set up, all you have to do is refresh it each
time source data changes.


On Oct 30, 4:10 pm, Randy wrote:
This was very helpful for me however i need a little more help if possible. I
am analyzing statistics for a sport (hockey) sometimes two players could have
the same value as an example player 1 has 5 goals player 2 has 8 goals and
player 3 has 5 goals. The result of this formula takes player 1 each time as
the result. How can i tweak this formula to show all the players even if they
are tied and in order? As Player 2 - 8 player 1-5 player 3-5



"Pete_UK" wrote:
Use the SMALL function, like this:


INDEX(A8:A34,MATCH(SMALL(G8:G34,2),G8:G34,0))


Change the 2 to 3, 4, 5 etc to get the next smallest.


Hope this helps.


Pete


On Oct 30, 9:00 am, Sean wrote:
The formula below returns the the name associated with the lowest
value in a range. How would I tweak this formula to return the 2nd
lowest value?


INDEX(A8:A34,MATCH(MIN(G8:G34),G8:G34,0))- Hide quoted text -


- Show quoted text -



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Return 2nd Lowest Value Q

Well, Ilia, with formulae you don't have to refresh it ...

There certainly seems to have been quite a few related questions on
this just recently - perhaps now that seasons are underway the sports
fans want to track their teams.

Pete

On Oct 30, 11:38 pm, ilia wrote:
I'm not sure why everyone is so hung up on using formulas to
accomplish this. Why not use a PivotTable instead? It's faster and
easier, and once it's set up, all you have to do is refresh it each
time source data changes.

On Oct 30, 4:10 pm, Randy wrote:



This was very helpful for me however i need a little more help if possible. I
am analyzing statistics for a sport (hockey) sometimes two players could have
the same value as an example player 1 has 5 goals player 2 has 8 goals and
player 3 has 5 goals. The result of this formula takes player 1 each time as
the result. How can i tweak this formula to show all the players even if they
are tied and in order? As Player 2 - 8 player 1-5 player 3-5


"Pete_UK" wrote:
Use the SMALL function, like this:


INDEX(A8:A34,MATCH(SMALL(G8:G34,2),G8:G34,0))


Change the 2 to 3, 4, 5 etc to get the next smallest.


Hope this helps.


Pete


On Oct 30, 9:00 am, Sean wrote:
The formula below returns the the name associated with the lowest
value in a range. How would I tweak this formula to return the 2nd
lowest value?


INDEX(A8:A34,MATCH(MIN(G8:G34),G8:G34,0))- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Return 2nd Lowest Value Q

Maybe


=INDEX(A8:A34,MATCH(LARGE(G8:G34,2),G8:G34,0))

Mike
"Sean" wrote:

The formula below returns the the name associated with the lowest
value in a range. How would I tweak this formula to return the 2nd
lowest value?

INDEX(A8:A34,MATCH(MIN(G8:G34),G8:G34,0))


  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Return 2nd Lowest Value Q


OOPS, you said 2nd smallest so substitute Small for large


"Sean" wrote:

The formula below returns the the name associated with the lowest
value in a range. How would I tweak this formula to return the 2nd
lowest value?

INDEX(A8:A34,MATCH(MIN(G8:G34),G8:G34,0))


  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 30
Default Return 2nd Lowest Value Q

=INDEX(A8:A34,MATCH(SMALL(G8:G34,2),G8:G34,0))

check this..

On Oct 30, 2:00 pm, Sean wrote:
The formula below returns the the name associated with the lowest
value in a range. How would I tweak this formula to return the 2nd
lowest value?

INDEX(A8:A34,MATCH(MIN(G8:G34),G8:G34,0))





  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 454
Default Return 2nd Lowest Value Q

Thanks everyone


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
I need to return the lowest time value in a range of cells. al elkins Excel Worksheet Functions 2 January 26th 07 06:24 AM
Formula to return lowest value of 3 datapoints Enzo Excel Worksheet Functions 3 January 7th 07 01:09 AM
Execl formula return the lowest value Excel Lowest Value Excel Worksheet Functions 2 July 25th 06 02:28 PM
Match 3 Criteria and Return Lowest Numeric Value Sam via OfficeKB.com Excel Worksheet Functions 16 April 4th 06 12:19 AM
Return lowest quantity Pat Excel Worksheet Functions 2 March 8th 05 09:59 PM


All times are GMT +1. The time now is 09:04 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"