Skip to main content

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!

Hi there! Try this…



IF(DATETIME_DIFF(TODAY(), Order, 'days') > 365, 'LONG', 'SHORT')

@Tuur Beautiful. Thanks much!


Reply