I've got several rows and columns of numbers. For each row I want to highlight the record that is the highest number or tied for the highest number in that row. I know how to do this for one row, but how can I easly apply this across multiple rows?

link|improve this question
feedback

1 Answer

Apply this rule to the entire range you want to look in:

=A1=MAX(1:1)

Where A1 is the top-left cell of the range and Row 1 is the first row.

link|improve this answer
I added a little bit to my question which might invalidate your answer, sorry. – DForck42 Jan 2 at 21:28
Try it. It works for me. – Excellll Jan 2 at 21:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.