I am displaying a collection (colAssessments) in a gallery and whenever a form is submitted, I am patching the collection to keep the gallery up to date. I have the following in the form.OnSuccess:
Patch(colAssessments, LookUp(colAssessments, AssessmentID = frmAssessment.LastSubmit.AssessmentID), frmAssessment.LastSubmit);
If an existing record is edited in the form and a textbox is emptied with text in it, the database is updated but the collection is not. When I look what the LastSubmit includes, it doesn't include the Blank value at all.
I have formula-level error management turned on.
How can I patch a blank value with the LastSubmit?