Add 6 months to an existing date

Hello

I have a field (Start_Date) and based on this date I want to initially populate another field (Expiry_Date) based on this date. So it should be Expiry_Date=Start_Date + 6 months.

I thought I could use the MONTH expression but Iโ€™m struggling?

Solved Solved
1 6 689
1 ACCEPTED SOLUTION

Basically it is:
[Start_Date] + 180
But if you explicitly want to calculate it in exact days:

EOMONTH([Start_Date],6) - EOMONTH([Start_Date],0) + [Start_Date]

View solution in original post

6 REPLIES 6
Top Labels in this Space