Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
64 | |
59 | |
47 | |
32 | |
31 |
User | Count |
---|---|
84 | |
73 | |
52 | |
50 | |
44 |