I use ComboBox and set the Datacard is required to input.
But actually, this item can be omitted and submitted.
So when I go to see SharePoint list, they say error as this column is required (I attached the image).
So I want to set validation for this Datacard. How to write this?
I wrote value in "Update" property of the Datacard as the following.
If(!IsBlank(ComboBox1.Selected.Title),{Value: ComboBox1.Selected.Title})
This seems working properly, but once "else" case happens, after that, the form works unproperly.
I think I couldn't write code properly for "else" case. How to write "else" case for this case? I just don't want to submit the data,
when there is no data in ComboBox.