Hi, I’m attempting to generate a standard task checklist for every record created in my main table (Clients). So multiple tasks to each client. I would also like to nest the task list on the Client detail view.
I’ve done something similar, nesting a related action item list for a Meeting (main table); however, the actions were added by the user so I just had the meeting ID as the ref field to link the two. In the new scenario, I want the standard task list to autogenerate for the user, but still be tied to the main record in order to nest.
I created a second table called Tasks, with “Client ID” (ref field to Client table), “Task”, “Complete?”. I created an Action for the main Client table To: “data: add a new row to another table …”, Table to add to = Tasks. For “set these cols..”, I have an expression to pull Client ID of referenced client (this works), then I added the value for each Task. Created a bot to run the action anytime a new client was added to client table. When tested, it populated the correct client ID but only added the last task of all the tasks I added into the action.
There is probably a more straightforward way to go about this. Any ideas are appreciated!