Reputation: 297
I have a 'Countries table', in this table there are two columns. 'Continent' and 'Country'.
I want to create a measure filters the 'Countries' of the 'Continents' Europe and Africa.
Any help would be much appreciated.
Upvotes: 0
Views: 1384
Reputation: 12375
https://learn.microsoft.com/de-de/dax/filter-function-dax
Fitered Table =
FILTER (
'Countries table',
'Countries table'[Continent] IN { "Europe", "Africa" }
)
Upvotes: 1