Hello community,
There are a few similar questions on the forum, but unfortunately, none of them helped me with my problem. My app shows data related to a large number of users in a SharePoint list (MySPList). In this SP list, there are a few columns that has multiselect enabled, such as Nationality, Language, City.
In the app, I'm using a Gallery (CandidateGallery) to show these users names, sex, job titles, nationality, language, city and some other details. I also have a search box to search users by their names. Filters on the side of the screen should enable filtering the gallery. Right now, the gallery's item property is recorded as below:
SortByColumns(Search(Filter(MySpList, cityradio.selected.Value = City || cityradio.selected.Value = Blank(), SearchBox.Text, "NameoftheUser"), "NameoftheUser", Ascending)
Every time I try to use one of the suggestions from the forum, I ran into either a delegation issue or the gallery stopped showing any data. I even used Reza's trick by grouping the items on the gallery and changing their visibility property. But because I have multiple multi-select combo boxes (for nationality, language and city) I always ended up with a random problem. Also, most of the questions I found on the forum relate to columns with a different data type. All of my multi select columns are tables. Do you have any suggestions that can help me?
Thank you,