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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AlanP514
Helper V
Helper V

Dynamically Limit Cumulative values

AlanP514_0-1653671807387.png

Hai All the first image is showing the actual number and the right is showing cumulative. 
Actually, Only data is present up to 2022 May but when I am calculating cumulative it is giving the output as based on the calendar table, so how can I restrict this dynamically 
For eg if I have data in 2022 June in the cumulative table should show cumulative up to June 2022

1 ACCEPTED SOLUTION
sturlaws
Resident Rockstar
Resident Rockstar

Hi, @AlanP514,

 

write your measure something like this:

cumSum =
VAR _month =
    CALCULATE ( SELECTEDVALUE ( 'Table'[Start of month] ) )
VAR _result =
    CALCULATE (
        SUM ( 'Table'[sales] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Start of month] <= _month )
    )
VAR _sum =
    SUM ( 'Table'[sales] )
RETURN
    IF ( _sum > 0, _result, BLANK () )

 

Cheers,
Sturla

If this post helps, then please consider Accepting it as the solution. Kudos are nice too.

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

Share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
sturlaws
Resident Rockstar
Resident Rockstar

Hi, @AlanP514,

 

write your measure something like this:

cumSum =
VAR _month =
    CALCULATE ( SELECTEDVALUE ( 'Table'[Start of month] ) )
VAR _result =
    CALCULATE (
        SUM ( 'Table'[sales] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Start of month] <= _month )
    )
VAR _sum =
    SUM ( 'Table'[sales] )
RETURN
    IF ( _sum > 0, _result, BLANK () )

 

Cheers,
Sturla

If this post helps, then please consider Accepting it as the solution. Kudos are nice too.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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