Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hey,
I have a table
Country
Argentina
brazil
germany
germany
India
Then i have other columns also in that table.
But what dax formel can i use if i just want to filter out like germany? But only germany, example it can count of many time germany have been in that partiuclar coulmn? And not jusing, page/report/visual level filters.. but a dax formel instead ?
Thanx in advance
Solved! Go to Solution.
Hi @Anonymous,
You can new a calculated table:
Table =
SUMMARIZE (
FILTER ( Table, Table[Country] = "germany" ),
Table[Country],
"Count", COUNT ( Table[Country] )
)
Best regards,
Yuliana Gu
Hi @Anonymous,
You can new a calculated table:
Table =
SUMMARIZE (
FILTER ( Table, Table[Country] = "germany" ),
Table[Country],
"Count", COUNT ( Table[Country] )
)
Best regards,
Yuliana Gu
Something like:
Measure = COUNTROWS(FILTER('Table',[Country]="germany"))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 62 | |
| 50 | |
| 45 |