Ok, this checks if the number (percentage) of wins is greater than both number of draws and losses, to return 'Win'. It then does the same for draws > wins & losses to give 'Draw' and for losses > wins & draws to give 'Lose'.
Because it's possible for the number of wins and draws to be the same, but both more than losses, etc, anything where the highest number (percentage) isn't unique returns 'too close to call'. Just replace "too close to call" with "" if you'd rather have a blank for that.
Formula:
=IF(AND(G8>H8,G8>I8),"Win",IF(AND(H8>G8,H8>I8),"Draw",IF(AND(I8>G8,I8>H8),"Lose","too close to call")))
If you want to cover all the options, this will do so:
Formula:
=IF(AND(G8>H8,G8>I8),"Win",IF(AND(H8>G8,H8>I8),"Draw",IF(AND(I8>G8,I8>H8),"Lose",IF(AND(G8=H8,G8>I8),"Win/Draw",IF(AND(G8=I8,G8>H8),"Win/Lose",IF(AND(G8<H8,H8=I8),"Draw/Lose",IF(AND(G8=H8,G8=I8),"Win/Draw/Lose")))))))
I hope that's the sort of thing you want?
If not, just ignore all of the above...!
Regards,
Aardigspook
If your problem is solved, please go to 'Thread Tools' on your first post and 'Mark Thread as Solved'.
You don't need to give me rep if I helped, but thanks are appreciated.
Bookmarks