Hi All,
I have a SP list in which I want to patch a column using look up with attachment.
My code:
Patch(
SPList,
LookUp(
SPList,
OrderID = Gallery4_6.Selected.OrderID
),
{
'Column':TextInput17.Text
},FormUpdates
);
I'm using form.updates to patch attachments.
Now the thing is when I run above code it does not patch those lookup columns but patch attachments. And when I remove form.updates it successfully patches the look up columns.
How to patch both lookup columns and attachments.
I tried this Patch code as well(using two patch function(with and without form.updates):
Patch(
SPList,
LookUp(
SPList,
OrderID = Gallery4_6.Selected.OrderID
),
{
},
FormUpdates
);
Patch(
SPList,
LookUp(
SPList,
OrderID = Gallery4_6.Selected.OrderID
),
{
'Column':TextInput17.Text
}
);
still above code doesn't work properly.
Please help!!!!
Thanks,
Rahul

Report
All responses (
Answers (