Forum Discussion
united2win
4 years agoHelper III
Countrows DAX help
Hi, I have the following table, looking to create a column with a DAX formula that identies if a Seller has a German Registration. Can anoyne provide that formula pls? I was hoping it would be simpl...
- 4 years ago
I just added the country as so:
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! ☺
Tahreem24
4 years agoSuper User
united2win You can try this Measure:
Measure = If(COUNTROWS(FILTER(TableSeller,TableSeller[Country]="Germany"))>0,"Yes","No")
- united2win4 years agoHelper III
Same issue as below, the first row in your table should return "Yes" as Seller A has a jurisdiction in Germany.