Forum Discussion

SeanHaggerty's avatar
SeanHaggerty
Copper Contributor
Dec 25, 2023
Solved

Conditional formatting formula using 2 criteria, for 2 different limits

I am trying to create a conditional formatting highlight formula that will highlight the cell if the date in C5 is more than 5 years and P5 has a value of more than 15, or if the date in C5 is less t...
  • Salposi's avatar
    Dec 25, 2023
    How about do this?
    =OR(AND(TODAY()-C5>=(5*365), P5>15),AND(TODAY()-C5<=(5*365), P5>10))

Resources