
Hello Team, I have a SharePoint list of 10 column 4 column out of 10 i am submitting at first using patch function on PowerApps rest 6 column i want to submit details after sometimes there is a unique srt id column are there by referring that Srt id i want to submit blank field on SharePoint list please help
@Anonymous
SharePoint automatically will generate an ID when a new record is added. That ID cannot be changed once the record is created and will not be reused if the record is deleted. If you want to Patch a blank record you can do that and an ID will be created and the record can be filled in later. An example of patching a blank contact is below:
Patch(somelistname, Defaults(somelistname), {Claims:Blank(),
DisplayName:Blank(),
Email:Blank(),
Department:Blank(),
Picture:Blank(),
JobTitle:Blank()
}
)
Note that the ID is not listed as it will be assigned by SharePoint.