So I have a small question and I have scoured the net only to come up with nothing
I want to use conditional formatting to format a row based on values in other cells.
Lets say I have the following info
NAME points age
BOB 8 12
JANE 6 8
JOE 10 9
I can get to the point where I can apply the format to the last row if lets say I use the max function to see who has the most points. I can also highlight the first row if I apply the max function to see who has the highest age
My question is I want to highlight the row with the person that has the highest age but the lowest points for that age
If I do a min on the age it currently returns the row for 'JANE' and then a MAX on the age I get the row for 'BOB' and if I use the AND function I get no formatting due to the fact that both conditions are met but not for the same row?
Please can someone point me in the right direction I really dont know what I am looking for but I assume that the AND is causing the issue.
Side note OR doesn't help as that will format both rows and I am looking for one only.
=AND(age_cell=MAX(age_range),points_cell=MIN(IF(age_range=max(age_range),points_Range,"")))type formula.