0

I'm looking to compare the value of the max score of a group of people, format is as follows:

date            user1   user2   user3
06/07/2011      123     112     244

How do I determine which of values on the row is the highest? Eg, I would like to pull 244 from this row.

davidahines
  • 3,976
  • 16
  • 53
  • 87

2 Answers2

4

How about using the max-function?

=MAX(b1:d1)
Fredrik Pihl
  • 44,604
  • 7
  • 83
  • 130
2

Use the max function in whatever cell you want it in: =Max(A2:A4)

bcoughlan
  • 25,987
  • 18
  • 90
  • 141