Forum Discussion

Ieustar1's avatar
Ieustar1
Copper Contributor
Nov 23, 2022
Solved

How to color cells based on two values

Hi,   I have a spreadsheet where the C column different text values and the F column has dates.   I'd like to have a formula saying "if C2 has "new referral " and F2 is older than 7 days then hig...
  • OliverScheurich's avatar
    Nov 23, 2022

    Ieustar1 

    =AND(C2= "New Referral",F2<=TODAY()-7)

    This rule for conditional formatting works in my sheet.