I’m trying to build a to-do list with recurring tasks. I have a “Recurring” column where I can put in the number of days I would like the task to recur. When I hit the “Completed” button, it triggers an IF formula that figures out if the “Recurring” column is greater than zero. If it isn’t, it treats it as a normal task and just marks it complete. If it is greater than zero, it is considered a recurring task, which triggers an “Addrow”, which basically duplicates the active row. I would like to also modify the active row, marking it complete, but I can’t figure out how to create a formula that does both Modifyrow and Addrow.
Give this formula a try for the button action. It uses RunActions() which is a way to run multiple button actions in one button. For your first request at the top, you’re asking to run one type of action to add a row and have values filled in, then a second action to modify the current row. RunActions() lets us create a comma separated list for this: RunActions(AddRow(), ModifyRows()). Then we put this into your If() statement.