Pregunta

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.

¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
scroll top