Hi there,
I would like to set the combo default value to "New" value only when the form is in New Mode. The form is attached to SharePoint List. In Sharepoint list there are 3 values for the combo box (New, InProgress and Completed).
I tried to set the value for Display Mode property for the field (not card) as below but it comes with the error. I would appreciate your assistance.
If(SharePointForm1.Mode = FormMode.New, {Value: “New”, ThisItem.Status)
or
If(SharePointForm1.Mode = FormMode.New, {Value: “New”, Parent.Default)
Both result in error. Please help,