Home > Mobile >  Conditional Formatting to range
Conditional Formatting to range

Time:01-21

Hours Analysis

I am trying to do conditional formatting on certain job levels if they reached their target range. How would I go about doing this. For example, if a PM on the left's ratio is higher than 60%, then I want them to turn green, if not, turn red.

CodePudding user response:

enter image description here

USe a CF rule based on formula:

=AND(B1>0.6,A1="PM")

CodePudding user response:

You can use VLOOKUP to find target. Formulas for formatting: For green:

=VLOOKUP(B4,$I$4:$K$6,3,FALSE)<=F4

For red:

=VLOOKUP(B4,$I$4:$K$6,3,FALSE)>F4

(change ranges according to yours).

Result: enter image description here

  • Related