Hi
I have two lists in SharePoint Online.
Companies and Articles.
There can be numerous Articles about a Company.
In the Articles list there is a Lookup to the Company List value "Title".
I am trying to filter the Articles Gallery by Company.
I created a Combo Box "cbFilterByCompany" with
DefaultSelectedItem = Choices(Articles.CompanyTitle)
And a Label with
Concat(cbFilterByCompany.SelectedItems, "CompanyTitle", ",")
But it just shows the text "CompanyTitle,CompanyTitle,CompanyTitle,CompanyTitle,CompanyTitle"
Also the Combo Box isn't displaying the names of the Companies (and it seems to be trying to show the names of comanies multiple times as there can be multiple articles about the same company)
thanks
P