Question

Can anyone please tell how to get the calculated date after 3 years from current date. I have tried different combinations none is working

=TEXT(YEAR(Created)+3,"MM/DD/YYYY")

It returns 07/06/1905.But answer should be 6/23/2017

Thanks.

Was it helpful?

Solution

Try following:

=DATE(YEAR(Created)+3,MONTH(Created),DAY(Created))
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top