Highest number...TIE?

  • Thread starter Thread starter Jesse
  • Start date Start date
J

Jesse

I figured out how to display the higest number from
several numbers and display the winner ( For my football
pool) using NESTED IF
statements......but now my problem is what if there is a
tie???? ANy suggestions??
I would like it to say ROLLOVER...but how can I
accomplish this with my nested IF statements?? Or do I
have to kill those statements and go a different direction
 
Jesse,

Why are you using Nested IFs? I would find the highest number with
=MAX(A1:A20)
say.

You can check if there is more than 1 with
=COUNTIF(A1:A20,MAX(A1:A20))
This will return > 1 if more than 1.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
I figured out how to display the higest number from
several numbers and display the winner ( For my football
pool) using NESTED IF
statements......but now my problem is what if there is a
tie???? ANy suggestions??
I would like it to say ROLLOVER...but how can I
accomplish this with my nested IF statements?? Or do I
have to kill those statements and go a different direction

I would do something like this:

=IF(COUNTIF(Scores,MAX(Scores))>1,"ROLLOVER",
"Max Score is "&MAX(Scores) & " by " &
INDEX(Players,MATCH(TRUE,Scores=MAX(Scores),FALSE)))

The formula must be *array-entered*. That is to say, hold down <ctrl><shift>
while hitting <enter>. XL will place braces {...} around the formula.

Players is the column which contains your list of players.
Scores is the column which contains the corresponding scores.

The formula will need modification if your setup is dissimilar.


--ron
 
Well I used IFs cause that the only way I knew how....I
see your guys suggestion...although I dont exactly follow
it, Im sure now that you gave that to me Ill figure it
out...thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Repost! 1
MATCH/IF/OR/AND statements not what I need apparently 1
Extract highest number 6
Comparing several numbers 1
Excel Excel IF statement with 3 outcomes 1
Tie Breaker selection 4
How can i tie a word to a number 1
Excel 2

Back
Top