I have a workflow that requires a new item to be entered initially with the Status = Open.
So let's say my Status can be = Open, In Progress, Closed.
I load these options in the comboBox with:
Items:
Choices([@'My Sharepoint List'].'Ticket Status')
Default Selected Items:
Parent.Default
This works great but how can I force the comboBox to display Open and hide the other two options when the form is New?
I tried:
Default Selected Items:
If(EditForm1_.Mode = FormMode.New,Filter('My Sharepoint List','Ticket Status'.Value="Open"),Parent.Default)
But I get an error saying
