Hello All,
I have 2 columns 1 is to select the Year, and 2 is to select an employee. I'm using SQL server view as a source.
And I'm trying to concatenate Email and FullName for the second combobox using the below formula.
Distinct(Sort(Filter(AddColumns('Emp.Emp',"Test",Concatenate(email1," ",FullName)),Year = ReqOn_C_SelectSem.Selected.Result),Test,Ascending),Test)
I want to display combined email and full name in the second combo box list.
What I'm missing here? Any suggestions?
Thanks