Hi there,
I'm creating an app where I want to cascade two dropdown lists, where the data sources are lists with multiple choice columns. I have a table with different products that support different languages for different countries. So, in a list called Products List, I created multiple choice columns Countries and Languages.

In the front end in Power Apps, I need to automatically filter the second dropdown with the languages supported by that country.

I managed to fill in the first dropdown with the following code.
GroupBy(SortByColumns(Ungroup('Products List',"Countries"),"Value",Ascending),"Value","Country")
But when trying I can't fill the second dropdown, I cannot fill the languages available for this country. I'm using the following code, but it's pulling the whole list of languages and not the ones related to the country.
Ungroup(Filter('Product List', ddwn_Country.Selected.Value in Countries.Value).Language, "Language")
How could I filter the second dropdown?
Thanks in advance, this is my first app in Power Apps and still on a step learning curve.
Thanks;
guibe80