Forum Discussion
Resguy
Jul 01, 2021Copper Contributor
If function and conditional formatting
Hi, I'm trying to set up a formula where by if the sent date was more than 5 days ago and we have not received anything back yet, column B turns red. If its less than 5 days since it was sent, Co...
- Jul 01, 2021
Riny_van_Eekelen
Jul 01, 2021Platinum Contributor
Resguy Perhaps like this in C2 and copy down.
=IF(E2=Sheet3!$F$3,2,IF(AND(A2<=TODAY()-5,B2<>""),1,0))