Forum Discussion
NoraJJ
Mar 01, 2021Copper Contributor
Subtract days in the past, from today, to show a past due message.
The expiry warning is todays date against the date in column E. I need a message to populate in column F with one of the three options. "Past due" "Due in less than 10 days" "More than 1...
- Mar 01, 2021
In F2:
=IF(E2="","",IF(E2<TODAY(),"Past due",IF(E2<TODAY()+10,"Due in less than 10 days","Due in 10 days or more")))
Fill down.
kmohanreddy20051735
Mar 01, 2021Copper Contributor
Hi,
You can apply the below formula in column F
=IF((G2-E2)>0,"Past Due",IF((G2-E2)>-10,"Due in less than 10 days","More than 10 days"))
Hope this will help you.
You can apply the below formula in column F
=IF((G2-E2)>0,"Past Due",IF((G2-E2)>-10,"Due in less than 10 days","More than 10 days"))
Hope this will help you.