Hi @Seth18 ,
The Employee Name column is a People column in SharePoint list. You should use the current formula in DefaultSelectedItems:
{
DisplayName:User().FullName,
Claims:"i:0#.f|membership|" & Lower(User().Email),
Email: User().Email,
Picture:""
}
For the Employee ID field which is a Text input so the Default property can be
First(Search(
Table1,
EmployeeName,
//search on first name
First(Split(ComboBox.Selected.DisplayName, " ").Value
)).'Staff ID'
So it will populate the staff ID in the control by default on basis off the Combo box selection, and similar to the Department and Job Title fields:
First(Search(
Table1,
EmployeeName,
//search on first name
First(Split(ComboBox.Selected.DisplayName, " ").Value
)).Department
First(Search(
Table1,
EmployeeName,
//search on first name
First(Split(ComboBox.Selected.DisplayName, " ").Value
)).Position
Best regards,