Hi!
I'm building an app where users fill out forms, send them for review, and then to archives as they're accepted.
In the review, the users want to be able to edit the form that was sent in. I'm aware of the Patch() function, however, I feel like there could be more effective ways of updating the entire set of values that's sent in.
The tables used for each form contain a column for each task, as well as a column for comments on each task. As you can imagine, these checklists can include up to 60 columns for each table. Patching one or two values is no issue, but patching all of them is extremely tedious.
Is there any way to update the entire record and all its columns without having to patch each and every column with the new values?