I’ve been using a formula set up I found on YouTube (Coda Tutorial: How to Set-Up Recurring Tasks in Coda! (with Template) - YouTube), but I’ve added a few recurrence instances, including a “Once.” I’m struggling to get the formula to work correctly now - to keep the recurrences as I have them working now, but to make sure the “Once” only happens the one time and doesn’t add a row when I check it off. Here’s what I’ve got so far:
RunActions(
AddRow([DB Tasks],
[DB Tasks].[Task Name], thisRow.[Task Name],
[DB Tasks].Client, thisRow.Client,
[DB Tasks].Occurs,thisRow.Occurs,
[DB Tasks].[Due Date],thisRow.[Next Due Date],
[DB Tasks].Details,thisRow.Details,
[DB Tasks].[Is Done],“Incomplete”),
ModifyRows(thisRow,thisRow.[Is Done],“Complete”)
)
And here’s my doc in case it helps anyone to play around:
