The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have Date and Feature coming from a source and need to add a Cumulative row count until that date and for that feature
I added sample values for the cumulative count
If I only have one feature , the following formula gives the count fine
CumulativeCount = CALCULATE(COUNTROWS(Registrations), FILTER (ALL(Registrations), [ApprovedDate] <= MAX([ApprovedDate])))
How to add one more filter to count only rows of Feature value in the current row context?
Solved! Go to Solution.
ALLEXCEPT helps in doing such calculations for sub categories.
Try this
CumulativeCount = CALCULATE ( COUNTROWS ( Registrations ), FILTER ( ALLEXCEPT ( Registrations, Registrations[Feature] ), [Date] <= MAX ( [Date] ) ) )
To achieve your requirement, you can add VALUES() at the end of your expression. Please refer:
CumulativeCount = CALCULATE ( COUNTROWS ( Registrations ), FILTER ( ALL ( Registrations ), [ApprovedDate] <= MAX ( [ApprovedDate] ) ), VALUES ( Registrations[Feature] ) )
Thanks,
Xi Jin.
To achieve your requirement, you can add VALUES() at the end of your expression. Please refer:
CumulativeCount = CALCULATE ( COUNTROWS ( Registrations ), FILTER ( ALL ( Registrations ), [ApprovedDate] <= MAX ( [ApprovedDate] ) ), VALUES ( Registrations[Feature] ) )
Thanks,
Xi Jin.
ALLEXCEPT helps in doing such calculations for sub categories.
Try this
CumulativeCount = CALCULATE ( COUNTROWS ( Registrations ), FILTER ( ALLEXCEPT ( Registrations, Registrations[Feature] ), [Date] <= MAX ( [Date] ) ) )
User | Count |
---|---|
86 | |
84 | |
35 | |
35 | |
35 |
User | Count |
---|---|
94 | |
79 | |
63 | |
55 | |
52 |