I am building a 2 page form. Page 1 the end user fills out with some info. Then at some later date, the admin team opens the item, clicks the button that is visible only to them, and goes to page 2 to fill out more info. I have tried a variety of codes to write the page 2 data back to the original item that was created from submitting page 1, but nothing seems to work. This is a form without a gallery. What does not work:
Patch('List Name',Defaults('List Name'),{'Comments': DataCardValue12})
Patch('List Name',Defaults('List Name'),SharePointForm1.Updates,AdminForm.Updates)
^^ Note that neither of these indicate an error in the form designer and both create new records rather than updating the existing record
This does not throw an error in the form designer, either, but gives the dreaded "must implement iConvertible" error. I removed and re-added my data source, but that didn't solve the problem.
Patch('List Name',LookUp('List Name',ID = varID.Text,{Comments:DataCardValue12}))
I'm out of ideas. Any suggestions would be most welcome.