I’m trying to calculate the next due date of something based on whether the occurrence is monthly or annually.
I’ve got this:
IF(
{Past?}=“0”,
{Start Date},
DATEADD({Start Date},1,‘years’
)
)
And I’ve got a formula that calculates the 1/0 for the {Pa...