Hello,
I am trying to get repeating tasks to work based on their regularity (Daily, Weekly, Monthly) with the IF and DATEADD formula used together. Here is what I have tried:

Can anyone suggest where I am going wrong?
Hello,
I am trying to get repeating tasks to work based on their regularity (Daily, Weekly, Monthly) with the IF and DATEADD formula used together. Here is what I have tried:

Can anyone suggest where I am going wrong?
Best answer by Kamille_Parks11
More or less the same formula as above, but made more efficient:
IF(
AND({Repeating}, {Due date}),
DATEADD(
{Due date},
1,
SWITCH(
{Repeating},
"Daily", "days"
"Weekly", "weeks",
"Monthly", "months"
)
)
)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.