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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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"))