Hi Team,
I have a SharePoint list Employee, having columns, EmployeeName and EmployeeID. In PowerApps I need to display EmployeeName and EmployeeID in a single dropdown.
Below is the display Format:
The dropdown should display EmployeeName and in brackets EmployeeID -> EmployeeName (EmployeeID).
Also, I need it in sorting order based on EmployeeName and should satisfy the condition, SystemStatus = "Pending".
Already, I have a dropdown displaying only Employee Names in sorting order. And additionally, we allow searching the dropdowns based on the text in the search box.
Sort(Filter(EmployeeList,StartsWith(EmployeeName,SearchBox_Ename.Text) && SystemStatus<>"Pending"),EmployeeName,Ascending)
Now, could you please help me with the same condition, but displaying with both EmployeeName and EmployeeID?
Thanks,
Harisha