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
Hi All,
I'm a newbie so forgive me in case my question is dumb, but I've been banging my head looking at other posts and cannot figure out a solution for my issue. I've created a measure to calculate cumulative counts for my column chart. The count works fine for the totals until I add a column to the columns series to stratify the count:
This is my measure:
Solved! Go to Solution.
Hi @avardaneg
The problem is at ALLNOBLANKROW. You could use ALLEXCEPT instead and put the column which is added to the columns series in it. This can keep the filter on the column series field. ALLEXCEPT function (DAX)
CumCount =
CALCULATE (
COUNT ( CN_Data[CNStartDate] ),
FILTER (
ALLEXCEPT ( CN_Data, CN_Data[Column series field] ),
CN_Data[Superseded] = "N"
&& CN_Data[CNState] = "Implementation"
&& CN_Data[DesignerCN] = "Y"
&& CN_Data[CNStartDate] <= MAX ( CN_Data[CNStartDate] )
)
)
Below is an example with SUM. The logic is similar.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @avardaneg
The problem is at ALLNOBLANKROW. You could use ALLEXCEPT instead and put the column which is added to the columns series in it. This can keep the filter on the column series field. ALLEXCEPT function (DAX)
CumCount =
CALCULATE (
COUNT ( CN_Data[CNStartDate] ),
FILTER (
ALLEXCEPT ( CN_Data, CN_Data[Column series field] ),
CN_Data[Superseded] = "N"
&& CN_Data[CNState] = "Implementation"
&& CN_Data[DesignerCN] = "Y"
&& CN_Data[CNStartDate] <= MAX ( CN_Data[CNStartDate] )
)
)
Below is an example with SUM. The logic is similar.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi Jing,
Thanks a lot for your help!!! 👍
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 193 | |
| 123 | |
| 99 | |
| 67 | |
| 49 |