Hi everyone. I am trying to use patch to update our SPList. The code below will simply add a record, not update an existing one. I have a dropdown that populates the text input fields, than when I updated the text field I want to update the record.
The formula I am using is
"Patch(
PMTGameDefects,
Defaults(PMTGameDefects),
{Title: ddDefectMaintGameName.Selected.Title,
Defect1: tiDefectMaint1.Text}
)"
It will not update a record, but it adds a new one. In the past when I have used Patch, the text fields are inside of a gallery, but this time they are not, they are just textinput fields except the one dropdown.
Thank you in advance!
Chris