Hi,
Struggling with this Nested IF formula. Maybe I need to use “Find”?
Goal to automatically calculate deadline based on type of task.
A) If it’s annual, biannual, quarterly or monthly then ADD the respective days to the creation date to produce the deadline.
if it’s a One-Time task or “see notes” or as needed, then pull the deadline date from another column
Here is what I have:
IF({Type} = “One-Time”, {Deadline},
IF({Type} = “Annual | Preventative/Recurring”, DATEADD{Date Entered}, 365, ‘days’,
IF({Type} = “Bi-annual | Preventative/Recurring”, DATEADD{Date Entered}, 365, ‘days’,
IF({Type} = “Quarter | Preventative/Recurring”, DATEADD{Date Entered}, 365, ‘days’,
IF({Type} = “Monthly | Preventative/Recurring”, DATEADD{Date Entered}, 365, ‘days’,
IF({Type} = “See Notes | Preventative/Recurring”, {Deadline},
IF({Type} = “As Needed | Preventative/Recurring”, {Deadline},
IF({Type} = “Project”, {Deadline}
))))))))