I want to calculate a deadline that is 30 days prior an App Release date for daily content. But I also want a deadline that is 60 days after the App Release for project types that are not daily.
The 1st step of my goal works correctly with this formula…
DATEADD({App Release (from Master List)}, -30, ‘days’)
Here is an IF statement attempt to include the 60 day delay for all other content that does not work. What am I doing wrong?
IF ({Project Type (from Master List)} = “DAILY Meditation”), DATEADD({App Release (from Master List)}, -30, ‘days’), DATEADD({App Release (from Master List)}, +60, ‘days’)