Forum Discussion
Anonymous
4 years agoNot applicable
Creating a column count by different values from another column
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...
- 4 years ago
Hi Anonymous
You may try
COUNTROWS ( CALCULATETABLE ( Table, ALLEXCEPT ( Table, Table[Column1] ) ) )
tamerj1
4 years agoCommunity Champion
Hi Anonymous
You may try
COUNTROWS ( CALCULATETABLE ( Table, ALLEXCEPT ( Table, Table[Column1] ) ) )
- Anonymous4 years agoNot applicable
Such a genius, it works, thanks a million!