I’m building a project management app and I want to add multiple tasks based on the type of the project selected after the form submission. They won’t necessarily be the same number of rows, it depends on the project type.
Is it possible without using Glide API or a third party? In an efficient way?
The tasks are pre-determined so they won’t change over time, the solution can be set today and the forget for quite a long time as it don’t need maintenance.
If the tasks are pre- determined based on the project type… then maybe you can have a “project template” table which has a column with the specific tasks associated with it.
The new project can copy this info across… and then keep track of what tasks have been completed etc.
I don’t have time to go into detail of all the steps… but maybe this gives you something to think about.