The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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"))
User | Count |
---|---|
79 | |
74 | |
42 | |
30 | |
28 |
User | Count |
---|---|
108 | |
96 | |
53 | |
48 | |
47 |