I want to apply validation setting so that my "ActionDate" should be always greater than 2 year and 6 month. I can able to set greater then today but how to set it should greater then 2 year and 6 months?

=OR([ActionDate]>TODAY(),ISBLANK([ActionDate]))
有帮助吗?

解决方案

Try using this formula:

=OR([ActionDate] > DATE(YEAR(Today())+2,MONTH(Today())+6,DAY(Today())),ISBLANK([ActionDate]))

Validate Due Date less than 12 months

许可以下: CC-BY-SA归因
scroll top