Reputation: 685
Looking for Excel conditional formatting help.
Need to highlight Max Date from Column B if Column A has same values. For Example; in column A value of "16870288"; "2018/07/20" should be highlighted in column B.
Any help is appreciated.
Upvotes: 0
Views: 300
Reputation:
Create a conditional formatting rule for column B based on a MAXIFS formula. If you don't have the newer MAXIFS function, create a pseudo-MAXIFS with INDEX or AGGREGATE.
=AND($B1<>"", $B1=AGGREGATE(14, 7, B:B/($A$1:$A$9999=$A1), 1))
Upvotes: 0
Reputation: 59485
Sorted as shown (ie ColumnA grouped together and within that ColumnB ascending), then a CF formula rule of:
=A2<>A3
applied in B2 and to the range B2:Bn where n
is what suits, should serve.
Upvotes: 0