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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a column, that has some parameters, and I need to calculate how much rows has each parameter. In measure we use this formula:
Rowcounts = CALCULATE(COUNT(Table1[Column1]),FILTER(Table1,Table1[Column1]="Compliant"))
but I don't need a mearure. I need a column that will contain each number of rows such rows per each row.
Btw, I have a lot of parameters, that why I can't filter them like this:
Table1[Column1]="Compliant"I need smth different, just filter by each automatically
Solved! Go to Solution.
Hi @Anonymous
You may try
COUNTROWS ( CALCULATETABLE ( Table, ALLEXCEPT ( Table, Table[Column1] ) ) )
Hi @Anonymous
You may try
COUNTROWS ( CALCULATETABLE ( Table, ALLEXCEPT ( Table, Table[Column1] ) ) )
Such a genius, it works, thanks a million!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 13 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 30 | |
| 26 | |
| 17 | |
| 11 | |
| 10 |