Forum Discussion

CaitlynEXCEL's avatar
CaitlynEXCEL
Copper Contributor
Aug 02, 2022
Solved

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?

 

  • CaitlynEXCEL 

    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

  • Harun24HR's avatar
    Harun24HR
    Bronze Contributor

    CaitlynEXCEL 

    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.

Resources