
Announcements
Hello,
I need to set a default value for a combo box data card in my "View_Form" in display mode New status to "Open".
I entered in Display mode property of Combo box Data Card Value following formula, but it shows "Expected enum value" error:
If(
View_Form.Mode = FormMode.New,
{Value: "Open"},
{Value: ThisItem.Status}
)
Could you please check what is wrong in my formula?
Thank you in advance.
Hi @Eeyore2005,
Please set the DefaultSelectedItems property as below:
If(
View_Form.Mode = FormMode.New,
{Value: "Open"},
{Value: ThisItem.Status}
)