edwrdcodeu
edwrdcodeu

Reputation: 297

DAX Trying to create a measure that filters a Country by Continent

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

Answers (1)

Peter
Peter

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

Related Questions