Im building a powerapp with a gallary that displays a list with different columns from SharePoint.
I would like to filter the gallary based on column "Country" using a dropdown. The idea here is that inside the list, each row can have values such as "Sweden" or "Norway" or "Norway and Sweden" or "Finland" for example, and the dropdown has a list of items such as ["Sweden", "Norway"].
What I would like to do is that, when i select "Sweden" in the dropdown, the gallary will only show the rows where the word Sweden exists, which means that all rows that have the values "Sweden" and "Norway and Sweden" will show up, but the rows that have the values "Norway" and "Finland" will not show up. The column where the country data is stored inside of the SharePoint list is a text column.
i tried using in , such as 'Country' in countrydrop.Selected.Value , but this only filters to rows that contain only "Sweden", it does not display rows that have "Norway and Sweden" for example.
How can this be done?
Thank you in advance!