Forum Discussion
pplanch
2 years agoRegular Visitor
Aggregating / counting records with DAX using conditions
I have a table showing below. What I need to do through DAX (measure ... I don't have access to make changes to the underlying data source) is produce a column with a total count for eac...
- 2 years ago
I did it for you in Power Query in post above, but if you want to create this in DAX here you go:
Hoofdperiode Count = CALCULATE( COUNTROWS(tblSicknessData), FILTER( ALLEXCEPT(tblSicknessData, tblSicknessData[Naam]), tblSicknessData[Reden] = "Hoofdperiode" ) )
dufoq3
2 years agoCommunity Champion
I'm not sure what do you want to achieve.
Create this measure
Hoofperiode Count =
CALCULATE(
COUNTROWS(tblSicknessData),
KEEPFILTERS(tblSicknessData[Reden] = "Hoofdperiode")
)
Put Naam into matrix rows and use this measure. It will show you count of all "Hoofdperiode" for every Naam.
pplanch
2 years agoRegular Visitor
dufoq3 Not sure how to "put Naam into matrix rows", as I am not yet familiar with the ins and outs of DAX. What I try to achieve, is showing in screenshot below (from Excel "simulation")
- dufoq32 years agoCommunity Champion
I did it for you in Power Query in post above, but if you want to create this in DAX here you go:
Hoofdperiode Count = CALCULATE( COUNTROWS(tblSicknessData), FILTER( ALLEXCEPT(tblSicknessData, tblSicknessData[Naam]), tblSicknessData[Reden] = "Hoofdperiode" ) )