Forum Discussion
CaitlynEXCEL
Aug 02, 2022Copper Contributor
Conditional Format only if Another Cell Says X
In column E I have the preset color as green and I am happy with that. What I want from the Yellow and Red is I only want it to format the numbers if they are also listed a a "FLO" user in column B. ...
- Aug 03, 2022
You have to use AND() function. Try Custom Formula in CF rules like
=AND($B1="FLO",$E1<60) 'This formula for yellow.
=AND($B1="FLO",$E1<30) 'This formula for red.
Harun24HR
Aug 03, 2022Bronze Contributor
You have to use AND() function. Try Custom Formula in CF rules like
=AND($B1="FLO",$E1<60) 'This formula for yellow.
=AND($B1="FLO",$E1<30) 'This formula for red.