hi @bbsin ,
Dropdown (DataCard10) DefaultSelectedItems:
If(
Form1.Mode = FormMode.New,
{
DisplayName: User().FullName,
Claims: "i:0#.f|membership|" & User().Email,
Department: "",
Email: User().Email,
JobTitle: ""
},
Parent.Default
)
Department Field Default:
DataCardValue10.Selected.Department
Designation Field Default:
DataCardValue10.Selected.JobTitle
Full Name Field DefaultSelectedItems:
If(
Form1.Mode = FormMode.New,
{
DisplayName: User().FullName,
Claims: "i:0#.f|membership|" & User().Email,
Department: "",
Email: User().Email,
JobTitle: ""
},
Parent.Default
)
If you follow these steps and ensure the properties are correctly set, your form should populate the fields based on the selected email in the dropdown.
Let me know if my answer helped solving your issue.
If it did please accept as solution and give it a thumbs up so we can help others in the community.