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 691
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

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]

Thank you for your solution! I have a question: When my [Start_Date] is before February the formula works fine, but when it's after February the result is missing a couple days. Is there any workaround for this issue?

Please start a new topic for help with this.

Thank you @Steve !

Hi Levent

That’s perfect. I couldn’t figure out that EOMONTH syntax but your formula does exactly what I need.

Many thanks
Paul

You’re welcome

Top Labels in this Space