Add multiple rows on form submission

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.

No.

What about using a custom action with IFs + Add rows? I have just 8 types of project to run through

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.

That would work as long as you don’t have too many rows to add.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.