Hi @KHenderson ,
Which type column do you use to store the ComboBox Selected value? Text column or Choice type column or Person type column?Could you please share a bit more about the formula you typed within the Items property of the ComboBox?
1. If you use Normal Text type column to store the ComboBox Selected value:
Set the Update property of the Data card which contains the ComboBox to following:
ComboBox1.Selected.ColumnName
Set the DefaultSelectedItems property of the ComboBox to following:
{
ColumnName: ThisItem.SPListTextColumn
}
Note: The ColumnName represents the column you used as Display value within the ComboBox.
2. If you use Choice type column to store the ComboBox Selected value:
Set the Update property of the Data card which contains the ComboBox to following:
{
Value: ComboBox1.Selected.ColumnName
}
Set the DefaultSelectedItems property of the ComboBox to following:
{
ColumnName: ThisItem.SPListChoiceColumn.Value
}
Note: The ColumnName represents the column you used as Display value within the ComboBox.
3. If you use Person type column to store the ComboBox Selected value:
Set the Update property of the Data card which contains the ComboBox to following:
{
Claims: "i:0#.f|membership|" & Lower(LookUp(Office365Users.SearchUser(), DisplayName = ComboBox1.Selected.ColumnName, Mail)),
DisplayName: ComboBox1.Selected.ColumnName,
Email: LookUp(Office365Users.SearchUser(), DisplayName = ComboBox1.Selected.ColumnName, Mail),
Department: "",
JobTitle:"",
Picture:""
}
Set the DefaultSelectedItems property of the ComboBox to following:
{
ColumnName: ThisItem.SPListPersonColumn.DisplayName
}
Note: The ColumnName represents the column you used as Display value within the ComboBox.
Please consider take a try with above solution, check if the issue is solved.
Best regards,