Adding additional months to a date field code

Hello,

I am working on a template engagement letter for our T2 clients where we outline by when a client can expect the work to be completed. Is there any way to add + 6 months to a the year-end date field code?

Thanks,

Morgan

Try this field code:

{{CurrentClient.PaymentDueWorksheet.Eligible.FilingDueDate}}

It’s a hidden field that calculates six months after the year-end date as the due date for the return.

If you want it formatted nicely, use this:

{{ format(CurrentClient.PaymentDueWorksheet.Eligible.FilingDueDate, "January 2, 2003")}}

Thank-you so much Elizabeth!