I have a date column in a SharePoint list. This column need to be filled with dates that 2 years forward from today or more.

How can I write the validation formula for this?

Much appreciated if anyone can help.

有帮助吗?

解决方案

Try something like below:

 =[Date Column] > DATE(YEAR(Today())+2,MONTH(Today()),DAY(Today()))

Read more about column validations in SharePoint at:

SharePoint Online List Column Validation Examples.

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