Hi All,
I have a SQL Table Employees with the following data. The Manager's column is referencing the ID in the same table.

I would like to build a dropdown showing the distinct Manager's by Name. So in this case the Manager's dropdown would include Amy, Carl, Emma. Then I want to use that dropdown to filter the managers. I got this to work where the dropdown shows the IDs but would like to have it show the names of the manager instead. I believe I need to use the addcolumns function but I am struggling with it.
Current DropDown items
Distinct('EmployeesTable',Manager)
Current Gallery Items
SortByColumns(Filter('EmployeesTable',Manager=Dropdown.Selected.Result),"Name",Ascending)
Any help would be greatly appreciated.