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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Petan65
Frequent Visitor

Power BI Cumulative Sum

Hello all,
 
could someone please help me where is in my DAX formula mistake?
 
Míra = CALCULATE( SUM ( 'MORAVIAPRESS$G_L Entry'[Sales] ) ,
FILTER( ALL('MORAVIAPRESS$G_L Entry'[Sales]),
'MORAVIAPRESS$G_L Entry'[Date] <= MAX('MORAVIAPRESS$G_L Entry'[Posting date])))
 
I'm already desperate
 
Thank you
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Petan65 ,

Please have a try.

Míra =
CALCULATE (
    SUM ( 'MORAVIAPRESS$G_L Entry'[Sales] ),
    FILTER (
        ALL ( 'MORAVIAPRESS$G_L Entry' ),
        'MORAVIAPRESS$G_L Entry'[Date] <= selectedvalue( 'MORAVIAPRESS$G_L Entry'[Posting date] )
    )
)

If I have misunderstood your meaning, please provide your pbix file without privacy information and your desired output with more details.

 

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Petan65 ,

Please have a try.

Míra =
CALCULATE (
    SUM ( 'MORAVIAPRESS$G_L Entry'[Sales] ),
    FILTER (
        ALL ( 'MORAVIAPRESS$G_L Entry' ),
        'MORAVIAPRESS$G_L Entry'[Date] <= selectedvalue( 'MORAVIAPRESS$G_L Entry'[Posting date] )
    )
)

If I have misunderstood your meaning, please provide your pbix file without privacy information and your desired output with more details.

 

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Avantika-Thakur
Solution Supplier
Solution Supplier

Hi @Petan65 ,

Can you please help elaborate your query with some sample data and what is expected as a result out of this DAX?

This DAX expression itself doesn't clarify your query.

 

Thanks!
Avantika

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.