Is there any way to duplicate entries according to the value entered in a column? For example: part = pd , project = 120 , quantity = 10. I would like to duplicate the entry according to the value entered in the quantity column.
Yes you can do that for example with an action. Modify the row and only that one column with a formula [Quantity]*2.
That’s not the idea, it would be this. Duplicate the entire entry, but duplicate the quantity according to what was entered in the column, for example, quantity = 10, which makes the entry 10 times with the same information.
These search results should get you started.
I did it the same way as in this example app, https://www.appsheet.com/templates/Sample-App?appGuidString=38e19bbb-2c00-43a3-8027-4f7beca255c8 but when I save the form the app just crashes completely, can you help me with that?
@pgtorres7 You would be using a loop of action to achieve the above if I am not wrong.
If yes, then you have not applied the loop break condition under the last action of the group, which is repeating the loop. If you will not add the loop break condition, the group action will get stuck in the infinite loop, which will cause the app to be unresponsive or crash.