Forum Discussion
JimJ2380
Oct 01, 2024Copper Contributor
How to patch attachments into a SharePoint list
I have a new form (Form1) that has all my fields contained. I can patch these fields into a new record and it works fine. Now I want to patch a second form (Form2), which contains attachments, into t...
PKHong5279
Feb 14, 2025Copper Contributor
Hi
Patch( 'SOW Requests', Defaults('SOW Requests'),
{SOW_Name: DataCardValue27.Text,
'Estimated Cost':Value(DataCardValue14.Text)},
Form3.Updates
)
Please amend to
Patch(Datasource,
{Field1: Value1,
Field2: Value2},
EditFormName.Updates
)
TQ and Have a nice day