Hi @ivandgreat
I'm assuming your Form is New Form and the Items property of the people picker ComboBox is Choice(DataSource.Person Column).
Depending on your needs, you can use the formula in the DefaultSelectedItems property of the people picker ComboBox(Please note that when the ComboBox selection value is not "Migrated" and is not empty, you still need to enter your default user information in this format)
If(
ComboBox.Selected.Value = "Migrated",
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & User().Email,
Department: "",
DisplayName: User().FullName,
Email: User(). Email,
JobTitle: "",
Picture: ""
},
If(
IsBlank(ComboBox2.Selected.Value),
Blank(),
If(
!IsBlank(ComboBox2.Selected.Value) && ComboBox.Selected.Value <> "Migrated",
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & "DefaultUserEmail",
Department: "",
DisplayName: "DefaultUserName",
Email: "DefaultUserEmail",
JobTitle: "",
Picture: ""
}
)
)
)