Reputation:
I've seen a lot of other posts like this, so I guess this is a common problem, but, I'm unable to fix it!
All I want is a multi-screen app that collects data from a bunch of fields and fills in an Excel table, nothing more than a basic form.
This is what I have:
The error I get when clicking the button is:
"The requested operation is invalid. Server Response: A value must be provided for item. clientRequestID: ..."
But what is wrong with this button?
Thanks for helping!
Upvotes: 0
Views: 10557
Reputation: 4365
Likely you have a field that is required which you are not providing a value for.
Example:
Title
column is required by defaultSome ideas:
Required
propertyRequired
properties to false
accordingly and try submitting againPatch
, Defaults
rather than SubmitForm()
to enter a new record into the Excel spreadsheet.
Patch
Upvotes: 1