I’m trying to build a search interface for my data. I want the users to be able to filter data based on different criteria. I have an Athletes table with some columns like Programme, State, Sport etc. I’ve created a page for search as shown in screenshot. When I select multiple values in the dropdown, I want all rows matching both the values to show up. But it’s showing no results. I guess it’s because the column entry does not match exactly due to multiple options selected. I’m not sure how to fix this though. Then, I want to extend the search to the other dropdowns as well. Basically, I want the search to behave exactly like Google Sheets’ filtering on multiple values.
Thank you for your response. That’s one step closer to what I’m looking for. I was saving the user filtered options in a different table called ‘Search Helper’ table with user specific columns. The filter condition for the list view was comparing source column value with the screen values. But the source for the list is coming from a different table. Are you suggesting I add the split text column to the source table itself?
This works as long as something is selected in each dropdown. But I also want to allow users to not select anything in the dropdown which is an equivalent of ALL for that dropdown. This seems more complicated than I expected with If Else conditions here. I tried having an ‘is empty’ condition but once there is a true condition, the rest of the checks don’t happen.
Yes, that is a little more complicated.
The way I normally do it is with multiple if-then-else columns, one for each filter, and then a final if-then-else column that ties them all together.
Thank you, Darren. It is tedious, but it solves the problem. The video link was very useful! I’m also building some charts, so will be taking some tips from there