Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Displaying winner/first four placings.

Using one of the two formulas below to display the name (in column B) of the
highest scorer (from column C) in another cell (B*)
is it possible to modify either to display the highest four placings?
How would I allow for a tied score.

=OFFSET(C1,MATCH(MAX(C1:C10),$C$1:$C$10,0)-1,-1,1,1)
or
=INDEX(B:B,MATCH(MAX(C:C),C:C,0))

Regards
TWK


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Displaying winner/first four placings.

Cell isn't in column B, it's currently E5.
TWK

"Toobi-Won Kenobi" wrote in message
...
Using one of the two formulas below to display the name (from column B) of
the highest scorer (from column C) in another cell (E*)
is it possible to modify either to display the highest four placings?
How would I allow for a tied score.

=OFFSET(C1,MATCH(MAX(C1:C10),$C$1:$C$10,0)-1,-1,1,1)
or
=INDEX(B:B,MATCH(MAX(C:C),C:C,0))

Regards
TWK




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 353
Default Displaying winner/first four placings.

=OFFSET($C$1,MATCH(LARGE($C$1:$C$10,1),$C$1:$C$10, 0)-1,-1,1,1)
or
=INDEX($B:$B,MATCH(LARGE($C:$C,1),$C:$C,0))
Copy down for how many places you wish to display and change second large
argument to desired place.
LARGE($C:$C,2) for second
LARGE($C:$C,3) for third, etc.
These formulas will repeat the first name found for all repeat scores, so
will need to make manual changes in case of a tie.

"Toobi-Won Kenobi" wrote:

Using one of the two formulas below to display the name (in column B) of the
highest scorer (from column C) in another cell (B*)
is it possible to modify either to display the highest four placings?
How would I allow for a tied score.

=OFFSET(C1,MATCH(MAX(C1:C10),$C$1:$C$10,0)-1,-1,1,1)
or
=INDEX(B:B,MATCH(MAX(C:C),C:C,0))

Regards
TWK



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Displaying winner/first four placings.

Hello BoniM

Perfect!

Many thanks

(liked your "Night flight to Venus" BTW) <G

TWK
"BoniM" wrote in message
...
=OFFSET($C$1,MATCH(LARGE($C$1:$C$10,1),$C$1:$C$10, 0)-1,-1,1,1)
or
=INDEX($B:$B,MATCH(LARGE($C:$C,1),$C:$C,0))
Copy down for how many places you wish to display and change second large
argument to desired place.
LARGE($C:$C,2) for second
LARGE($C:$C,3) for third, etc.
These formulas will repeat the first name found for all repeat scores, so
will need to make manual changes in case of a tie.

"Toobi-Won Kenobi" wrote:

Using one of the two formulas below to display the name (in column B) of
the
highest scorer (from column C) in another cell (B*)
is it possible to modify either to display the highest four placings?
How would I allow for a tied score.

=OFFSET(C1,MATCH(MAX(C1:C10),$C$1:$C$10,0)-1,-1,1,1)
or
=INDEX(B:B,MATCH(MAX(C:C),C:C,0))

Regards
TWK





  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 353
Default Displaying winner/first four placings.

Nah, it's not perfect, if it were perfect, it would handle ties... :-(
Do you have some data that could be a tie breaker? An overall rank score or
something like that?
If not, you could use this to add a rank column:
=RANK(C1,$C$1:$C$10,1)+COUNTIF($C$1:C1,C1)-1
Copy into D1 and fill down, but it rather arbitrarily gives the better rank
to the first one it comes across.
But then:
=INDEX($B:$B,MATCH(LARGE($D:$D,1),$D:$D,0))
would never give you any duplicates.

boney m? giving your age away? i guess that's as close a match as toobi-won
:-)
may the force not be against you!


"Toobi-Won Kenobi" wrote:

Hello BoniM

Perfect!

Many thanks

(liked your "Night flight to Venus" BTW) <G

TWK
"BoniM" wrote in message
...
=OFFSET($C$1,MATCH(LARGE($C$1:$C$10,1),$C$1:$C$10, 0)-1,-1,1,1)
or
=INDEX($B:$B,MATCH(LARGE($C:$C,1),$C:$C,0))
Copy down for how many places you wish to display and change second large
argument to desired place.
LARGE($C:$C,2) for second
LARGE($C:$C,3) for third, etc.
These formulas will repeat the first name found for all repeat scores, so
will need to make manual changes in case of a tie.

"Toobi-Won Kenobi" wrote:

Using one of the two formulas below to display the name (in column B) of
the
highest scorer (from column C) in another cell (B*)
is it possible to modify either to display the highest four placings?
How would I allow for a tied score.

=OFFSET(C1,MATCH(MAX(C1:C10),$C$1:$C$10,0)-1,-1,1,1)
or
=INDEX(B:B,MATCH(MAX(C:C),C:C,0))

Regards
TWK








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Displaying winner/first four placings.

B,

We can live with the tie issue (haven't had one yet anyway)
But will try your suggestion on Monday.
Giving my age away? I had the white suit, black shirt and medallions etc. I
looked like a negative!
The force is always against me, I'm married! (Roobi-won)
Regards

TWK

"BoniM" wrote in message
...
Nah, it's not perfect, if it were perfect, it would handle ties... :-(
Do you have some data that could be a tie breaker? An overall rank score
or
something like that?
If not, you could use this to add a rank column:
=RANK(C1,$C$1:$C$10,1)+COUNTIF($C$1:C1,C1)-1
Copy into D1 and fill down, but it rather arbitrarily gives the better
rank
to the first one it comes across.
But then:
=INDEX($B:$B,MATCH(LARGE($D:$D,1),$D:$D,0))
would never give you any duplicates.

boney m? giving your age away? i guess that's as close a match as
toobi-won
:-)
may the force not be against you!


"Toobi-Won Kenobi" wrote:

Hello BoniM

Perfect!

Many thanks

(liked your "Night flight to Venus" BTW) <G

TWK
"BoniM" wrote in message
...
=OFFSET($C$1,MATCH(LARGE($C$1:$C$10,1),$C$1:$C$10, 0)-1,-1,1,1)
or
=INDEX($B:$B,MATCH(LARGE($C:$C,1),$C:$C,0))
Copy down for how many places you wish to display and change second
large
argument to desired place.
LARGE($C:$C,2) for second
LARGE($C:$C,3) for third, etc.
These formulas will repeat the first name found for all repeat scores,
so
will need to make manual changes in case of a tie.

"Toobi-Won Kenobi" wrote:

Using one of the two formulas below to display the name (in column B)
of
the
highest scorer (from column C) in another cell (B*)
is it possible to modify either to display the highest four placings?
How would I allow for a tied score.

=OFFSET(C1,MATCH(MAX(C1:C10),$C$1:$C$10,0)-1,-1,1,1)
or
=INDEX(B:B,MATCH(MAX(C:C),C:C,0))

Regards
TWK








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
Formula to display the winner Toobi-Won Kenobi Excel Worksheet Functions 6 April 27th 07 03:04 PM
Can Excel randomly pick one winner out of 100 contest entries? Bernard Excel Discussion (Misc queries) 4 March 30th 07 04:28 PM
Displaying a different value Mac Excel Discussion (Misc queries) 8 February 2nd 06 01:09 PM
Formula for placings, using 4 times and greater than minimum time handers Excel Worksheet Functions 2 May 12th 05 08:00 PM
Displaying #N/A as a zero kosciosco Excel Worksheet Functions 2 November 23rd 04 11:51 AM


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