Oct 19, 2017 11:06 AM
I’m trying to create a formula field with an IF conditional that checks if the current date is greater/less than 365 days from a date that’s specified on a field date I have.
For example, I have an “Order” field that’s set as a date field.
I want to check to see if the “Order” field is greater than or less 365 days from the current date. If the date is greater, I want it to output “Long”. If shorter, I want it to output "Short.)
Any help would be greatly appreciated!
Oct 19, 2017 12:16 PM
Hi there! Try this…
IF(DATETIME_DIFF(TODAY(), Order, 'days') > 365, 'LONG', 'SHORT')
Oct 19, 2017 12:40 PM
@Tuur Beautiful. Thanks much!