Forum Discussion
edcdcpowerbi
Helper I
5 years agoHelp Filtering Country table countries by continent
I have a table name 'Countries', in this table are two columns 'Country' and 'Continent'. I want to create a measure which filters these countries for the continents Europe and Africa. I am...
amitchandak
Super User
5 years agoedcdcpowerbi , Create the measure below and use that with the country in visual
countrows(filter(Table, Table[Continent] in { "Europe" , "Africa"}))
- edcdcpowerbi5 years ago
Helper I
Hi, thanks for helping. Is there a way this can be done in a single measure rather than having to add countries to a visual with this measure? I am hoping to have a single measure with lists all the filtered countries.