Hello Everyone
Can i get help with a new Project
I have Two Tables In Dataverse 1- Order 2- Order Item
I have Relationship between them One to Many
when i Create Power Apps I use this Code to Update Two tables and Summited done and i get all in tables But Column of the Relationship Name Empty and cant get result from the Second Table Based First Table
SubmitForm(Form1_1);
ForAll(Gallery3.AllItems, Patch('Order Items', Defaults('Order Items'),
{Name: ThisRecord.Name & ", " & ThisRecord.Description & ", " & ThisRecord.Size,
Qty: Value(Qty.Text),
Unit: Value(Dropdown3.SelectedText.Name),
SubTotal: Value(SubTotal.Text),
Price: ThisRecord.Price
}))
Form1_1 to send Order Details Customer , total ,....
Gallery3 used By Collection to send Order Items to Second Table with Name, Subtotal