Reputation: 113
Say I have data from A1 to E10. So it's 10 x 5 cells. I know how to do each row individually, using conditional formatting. Say for row 1:
Select A1, conditional formatting -> =max($A$1:$E$1)
, then "brush" through the whole row.
But if I have a large table, this is not very efficient.
How do I efficiently ask Excel to highlight the maximum (alternatively, minimum) number in each row(column)?
Upvotes: 1
Views: 1281
Reputation: 59460
Please select the range, HOME > Styles - Conditional Formatting, New Rule..., Use a formula to determine which cells to format, Format values where this formula is true:
=A1=MAX($A1:$E1)
Format, select formatting of choice, OK, OK.
Upvotes: 2