Hi @jPruett ,
Do you want to patch records back to your Salesforce Table using Patch function?
Regarding the needs that you mentioned, I think the Patch function could achieve your needs. The Patch formula is similar to the formula that you mentioned.
# Add new entry into your Salesforce table
Patch(
'Salesforce Table',
Defaults('Salesforce Table'),
{
Column1: "xxxx",
Column2: "xxxxx",
...
}
)
# Update an existing record
Patch(
'Salesforce Table',
LookUp('Salesforce Table', 'Primary Column' = "xxxxxx"), // find the record you want to update through Primary Key Column in your table
{
Column1: "xxxx",
Column2: "xxxxx",
...
}
)
Please try above solution, then check if the issue is solved.
Regards,