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. The Yellow is set for <60 and the red is set for <30
What kind of formula could I use for that?
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.
1 Reply
- Harun24HRBronze 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.