Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
talkprem
Helper I
Helper I

Cumulative Sum is not giving correct results

Hello,

 

I am currently trying to get cumulative sum of my sample data as in picture. but instead of Cumulative Variance and Cumulative Sales i am getting same as the normal variance and Cumulative sales. I have pasted my DAX code as well but it is not working.
I have slicers on datetime,pharmaid,base,base group (currently only datetime and pharma id are selected)

PJ_20231013_142814674~2.jpg

 

This is the dax formaula used for Cumulative variance and Sales - 

 

Cumulated Variance =
CALCULATE (
SUM (Table1'[Variance]),
FILTER(ALLSELECTED(Table1[DateTime],Table1[pharmaSiteld]),
 Table1[DateTime] <=MAX(Table1[DateTime])
)

 

Can someone please help me 

4 REPLIES 4
PurpleGate
Resolver III
Resolver III

Try

CALCULATE(
    COUNTA('Table1'[Variance]),
    FILTER(
        ALLSELECTED('Table1'[DateTime]),
        ISONORAFTER('Table1'[DateTime], MAX('Table1'[DateTime]), DESC)
    )
)

This is Giving all rows as 1 in cumulative sum. Can you please try once more?

Ok, I guess you should use Sum instead of Count. 

 

Or if your Variance column is already a measure, then just use that instead.

Yes i have already given my DAX formula, but it is not giving the cumulative sum i need. can someone please help on this.
I have been trying for 2 days and still got no solution.
Instead of cumulative sum i am getting same value as variance column.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.