How to edit tasks in bulk?
1 Like
In order to get some help you will need to provide more details about what do you want to edit
2 Likes
You could create a button (canvas) with some relation controls that are based on each row’s existing config. Update all those rows with the new values you choose in the canvas controls via the modifyrows formula.
1 Like
I believe @Cristian_Nichifor has the right approach.
What you are describing is an automated process.
There are 3 ways to implement an automated process in Coda.
But they all involve using an ‘action’ formula (a formula that has side-effects and must be triggered)
- a Canvas Button that takes values from control-values and other tables and updates your table(s)
- a Table Button Column that does the same but has the context variable
thisRowfor the row you click on - an Automation Rule that is triggered by changes to row data (◦◦◦ → Doc Settings → Automations)
The formula you use in any of these situations will execute one of the table updating formulas to change the values you want to change
- AddRow() - to insert a new row into a table
- AddOrModifyRows() - to update rows or (if they don’t exist) insert them
- ModifyRows() - to change values in existing rows
Respect
➤𝖒𝖆𝖝
1 Like

