This seems like it should be really simple but I cannot figure out the syntax.
I want to display/set the values in the combobox to what has been chosen prior. Sharepoint list for datasource. Column is a Person/Group column.
Items: Choices([@'BusMarket - IBC PreSurvey'].'Sales Team Information')
I tried setting the default both using IsBlank and IsEmpty. The intent is that if there has been a selection made in this column/field, that the values be prepopulated on the form when the form opens in Edit mode. And if there has NOT been a selection made, that the current user is populated in the combobox.
Here is the last attempt:
If(
IsEmpty(ThisItem.'Sales Team Information'),
User(),
ThisItem.'Sales Team Information'
)
I'm pretty sure my problem is that IsBlank and IsEmpty both expect a single record and ThisItem.'Sales Team Information' returns a table of records. But I cannot figure out how to correct.
Also, should I be setting the 'Default' property or the 'DefaultSelectedItems' property.