Hello,
I have two tables and having hard time trying to figure out the relationship.
I need to be able using my form to save an item that is linked with the other table like MS access or EDIT.
WOW!!!!!
That was super fast!!!
Hi @sajarac ,
Please try the below:
Patch(
'Order List',
Defaults('Order List'),
{
Title: TextInput16.Text,
ItemID: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id: LookUp(
'Master List',
Title = Dropdown6.Selected.Title,
ID
),
Value: Dropdown6.Selected.Title
}
}
)
I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.
Regards,
Krishna
If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.