1

SubmitForm has many benefits over Patch, such as triggering error messages in the form. However, I find that I often have to use Patch because Patch returns useful info on what was submitted, such as the ID of the row in the SharePoint List that the call to Patch has populated.

After calling SubmitForm, is there any way to retrieve what was submitted? In particular, I'm interesting in grabbing the SharePoint List's corresponding row ID .

J. Mini
  • 1,868
  • 1
  • 9
  • 38

1 Answers1

3

Just use your Form.LastSubmit.* Then you'll be able to retrieve data from last submitted item.

  • 2
    Sounds reasonable. You might want to link to the documentation or point out some key features like where that property can be accessed and give an example of how it can replace what I've said that I like about `Patch`. – J. Mini Mar 14 '23 at 19:05
  • Actually, this one could help. https://www.spguides.com/powerapps-lastsubmit/ – Legierski Marek Mar 15 '23 at 11:13