May 28, 2022 04:56 PM
Hey everyone, quick question:
I use a table to organize my various types of tasks and I have the records groups by the single select the shows what task type they belong to.
It gets annoying getting to the bottom of the list of tasks for a specific task type and the group going away and having to re-add a record and update the single select to open that group again instead of hitting the plus at the bottom of the group to add a new record to the group.
Is there any sort of like automation that can detect that a group is out of records and to add in a new one to just keep the group open?
If not is there any sort of solution that you guys happen to know for this besides the kanban view?
Thank you for any help!
Solved! Go to Solution.
May 29, 2022 01:03 AM
Yeah, with an automation you’d trigger it every time a task gets completed, do a find record action of that specific task type and see whether there’s at least 1 undone task for that task type, and if there wasn’t, make a new task.
I’ve thrown up a version of this here
This would consume an automation action every time you completed a task though. Feels like there should be a better way to accomplish what you’re looking for but I can’t think of anything; hopefully someone else has an idea
Trigger:
Find records action:
Conditional create records action:
May 29, 2022 01:03 AM
Yeah, with an automation you’d trigger it every time a task gets completed, do a find record action of that specific task type and see whether there’s at least 1 undone task for that task type, and if there wasn’t, make a new task.
I’ve thrown up a version of this here
This would consume an automation action every time you completed a task though. Feels like there should be a better way to accomplish what you’re looking for but I can’t think of anything; hopefully someone else has an idea
Trigger:
Find records action:
Conditional create records action:
May 29, 2022 11:33 AM
Wow thank you so much, I will implement this see if it works in my system, thank you so much!