This works, this is the value of the BrowseGallery1 Items....
SortByColumns(Filter([@'ExternalContacts'],
StartsWith(Company.Value,SearchInput.Text)||SearchInput.Text in 'Display Name'),**"Title"**,
If(SortDescending1,Ascending,Descending))
Instead of title, I want to sort by the value of the Company. Now, company is a lookup list and in the filter I have to do a special entry of Company.Value for it to work...
I really want to sortbycolumns "Company.Value" but everytime I do that, there's no data. I tried ... simply ,Company, and ,"Company", and ,"Company.Value", and ,Company.Value, and every version produces no data. What am I doing wrong?