Hello There,
I converted Single Line Of Text to Dropdown and this dropdown is required to save the data into SharePoint List. Also, data is saved using Email means if I get an email then as per the data it would save into my list so with the help of Powerautomate I can save blank values in the dropdown.
Now, I'm facing an issue when I'm trying to update the required dropdown value to items. I'm getting errors like "Network error when using Patch function: The specified column is read-only and can't be modified.", while I haven't used Patch Function in my customize form.
My code Onsave is like below
"
If(IsBlank(DdHRTopic.SelectedText.Value) || IsBlank(DdCategory.SelectedText.Value) || (DdHRTopic.SelectedText.Value="Select") || (DdCategory.SelectedText.Value="Select"),Notify("HR Topic Or Category is required.",NotificationType.Error),SubmitForm(SharePointForm1));
"
Let me know what to do to solve this issue.
Regards,
Manoj Roy