Reputation: 3
I am trying to get the max value:
Here, Catee has 3 entries and out of which I need to highlight the maximum value which is 2000
Ramox has 4 entries and need to highlight the max value i.e. 144
I tried with condition formatting but I've more than 1900 rows plus 112+ records as like Catee and Ramox and applying condition formatting individually is a cumbersome process.
Record Ace has 550 as the highest number but appeared thrice. In this case, I need highlight them all
If there a better way to highlight the same:
Thanks!
Upvotes: 0
Views: 139
Reputation: 17493
Are you aware of the Subtotals
feature of Excel?
First, I'd advise you to add the names, as so beautifully explained in JvdV's video.
As a result, you get something like this:
Start the SubTotals
feature, using the Max
function:
The first result looks as:
Clicking on 2 in the margin modifies this into:
Have fun :-)
Upvotes: 2
Reputation: 75850
Make it easy on yourself. My advise:
C2:C22
;=C2=MAXIFS(C$2:C$22,A$2:A$22,A2)
;A2:C22
;=A2
and confirm with Ctrl+Enter.Upvotes: 2