The goal is to highlight value in Column A5 Green, if the values in both B5 and C5 have the value "Confirmed" then also have the same mythology for A6 - A19
I tried using if statements, but it was not working
CodePudding user response:
Use AND
:
=AND(B5="Confirmed",C5="Confirmed")
and apply this rule to range A5:A19
.