Try an array formula:
Confirmed as an array formula with CSE (Ctrl-Shift-Enter).Code:=IF(MAX(IF($A$2:$A$10=A2,$B$2:$B$10))=B2,"Yes","No")
I have a data table that looks like the following;
Item Operation Is Max
X 20
X 30
X 40
Y 10
Y 20
Y 30
Z 40
Z 50
Z 60
I'm looking for a formula for the 'Is Max' column where, it looks for all Item matches and then returns "No" or "Yes" based on the highest Operation value. So, the end product would look like;
Item Operation Is Max
X 20 No
X 30 No
X 40 Yes
Y 10 No
Y 20 No
Y 30 Yes
Z 40 No
Z 50 No
Z 60 Yes
Any help would be much appreciated!!
Try an array formula:
Confirmed as an array formula with CSE (Ctrl-Shift-Enter).Code:=IF(MAX(IF($A$2:$A$10=A2,$B$2:$B$10))=B2,"Yes","No")
=IF(MAX(INDEX(($A$1:$A$25=A1)*$B$1:$B$25,0))=B1,"yes","no")
Bookmarks