Hi Experts,
I have a form called Sales order form that is connected to the share point list Sales Order. My goal is to document orders sent by a team member from the Sales order form with the functionality of having multiple rows for Product, Quantity, Product Colour and Supplier. Using Shane's powerapps911 on you tube (part 1 to 3 to build infopath like app), I have designed the app similar to the usages but I'm stuck in the logic.
I have used a collection to collect the multiple rows. I can see these collections in the app. If i just use the edit form, I can see that the data is found and collected. I am having issues with this formula and i'm not sure where the problem is, as when its submitted, the collection isn't added into the list.
ForAll(
ProductOrderCollection,
Patch(
'Sales Order',
Defaults('Sales Order'),
{
ProductOrdered: Product_Order,
ProductColour: Product_Colour,
Supplier: Product_Supplier,
Quantity: Product_Qty,
}
)
)
I am using the Edit form for the left hand side and a gallery for the right hand.
Can anyone help ?