Hi @amydixanne,
Could you please share more details about the Patch formula within your app?
Further, could you please share a bit more about the error message?
Currently, we could use Patch function to create records or modify records in a data source, or merge records outside data source.
The standard formula format for creating a record or records:
Patch(
datasource,
Defaults(datasource),
{
Column1:Value1,
Column2:Value2,
Column3:Value3,
...
}
)
The standard formula format for modifying a record or records:
Patch(datasource, BasedRecord, ChangeRecord1, [ChangeRecord2, ...])
The standard formula format for merging records:
Patch( Record1, Record2 [, …] )
More details about Patch function in PowerApps, please check the following article:
Patch function
If you want to save your form data into your SP list using Patch function, please check the following article:
Patch(
'YourSPList',
Defaults('YourSPList'),
{
Column1: DataCardValue1.Text,
Column2: DataCardValue2.Text,
Column3: DataCardValue3.Text,
...
ColumnN: DataCardValueN.Selected.Value,
...
}
)
More details about saving form data into SP list using Patch function, please check the following video:
https://www.youtube.com/watch?v=k3gT-HxUhL8
Best regards,
Kris