I have a data table that has columns Name, Task, Days
| Name | Task | Days |
| Jon | Take out laundry | 2 |
| Jon | Clean dishes | 3 |
| Bob | Take out laundry | 4 |
| Bob | Clean dishes | 6 |
I would like to create a gallery(ies) that can input the data like below. Where if you add a new task with the click of one button it automatically creates two input fields for days for both Names. I am not sure if this is even possible with multiple galleries and one button for Patching a table. Any help in the right direction would be greatly appreciated.
| Task | Jon | Bob |
| Take out laundry | 2 | 4 |
| Clean dishes | 3 | 6 |
| <Input New task> | <Input Days> | <Input Days> |