Forum Discussion
HenryJS
Post Prodigy
6 years agoIF Text and Date
Hi all,
How can I create a column which states Yes IF:
- Document = Self Billing Agreement
- docexpiry is in the next 1 month
Thank you
Hi HenryJS
try a column
Column = IF([Document] = "Self Billing Agreement" && DATEDIFF([docexpiry], TODAY(), MONTH) <= 1, "Yes", "No")