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
anonymouAsd
Frequent Visitor

Weird Error with Running Total Measure

Hey All I have data in the form below

IDAmountMonth
112341
14233
11255
243524351
23246
22345232
3243

1

However when I try to run my running total I get this odd graph

anonymouAsd_0-1669872845387.png

So it correctly calculates my the running total until it reaches the end of my data and then plummets to 0 when it should just maintain a straight line infinitely.

My code for the measure is:

Amount Incurred running total in Month =
CALCULATE(
    SUM('FACT_sales'[Amount]),
    FILTER(
        ALLSELECTED('FACT_sales'[Month]),
        FACT_sales[Month]<= MAX(FACT_sales[Month]
    )
))

Any ideas why my running total is failing after some point and how to solve it?
Note: that I ran the exact same table through an excel pivottable and got nice graph below 

anonymouAsd_1-1669873007638.png

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@anonymouAsd , Create a new month table

 

month = generateseries(1,20,1)

 

join it month in your table and create a measure like

 

CALCULATE(
SUM('FACT_sales'[Amount]),
FILTER(
ALLSELECTED('month'),
month[Month]<= MAX(month[Month]
)
))

View solution in original post

2 REPLIES 2
v-zhangti
Community Support
Community Support

Hi, @anonymouAsd 

 

You can try the following methods.

Amount Incurred running total in Month =
CALCULATE (
    SUM ( 'Table'[Amount] ),
    FILTER ( ALL ( 'Table' ), [Month] <= MAX ( 'Table'[Month] ) )
)

vzhangti_0-1669966560419.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

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

amitchandak
Super User
Super User

@anonymouAsd , Create a new month table

 

month = generateseries(1,20,1)

 

join it month in your table and create a measure like

 

CALCULATE(
SUM('FACT_sales'[Amount]),
FILTER(
ALLSELECTED('month'),
month[Month]<= MAX(month[Month]
)
))

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.