I have a New Item form that a user fills out and enters a quantity into a text box.
The form should create N number of identical items into a SharePoint List based off the quantity box.
The submit icon uses the following OnSelect:
ForAll(FirstN([TextInput1.Text, 1,2,3,4,5,6,7,8,9,10]),Patch('General Inventory',Defaults('General Inventory'),{Title: DataCardValue5_1.Text,Barcode: DataCardValue6_1.Text,User: DataCardValue9.Selected,Notes: DataCardValue8_1.Text,Attachments: DataCardValue14}));Back()
Only a single item is created in the SharePoint list, however.