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

Running Total Problem

I have a data set with counts per number of weeks before a certain date. I want to visualsie this as a running total.

 

I'm using this as my measure:-

 

tickets running total in weeks_before 2 =
CALCULATE(
    SUM('sales_over_time (2)'[tickets]),
    FILTER(
        ALLSELECTED('sales_over_time (2)'[weeks_before]),
        ISONORAFTER('sales_over_time (2)'[weeks_before], MAX('sales_over_time (2)'[weeks_before]), ASC)
    )
)

 

My result is only partially correct, it looks like the picture below. The problem is the currently selected data (from slicers) contains no records for weeks 29 to 52 but these week numbers exist for rows that are filtered out by the slicer. This seems to be causing an error in the calculation. What am I missing?

running.png

 

1 ACCEPTED SOLUTION
Cmcmahan
Resident Rockstar
Resident Rockstar

It is working correctly.  When you use ALLSELECTED in your measure, it only returns values that are available to the current visual.  Since you have filtered data from weeks 29-52 via slicer, the data isn't used.

 

You can try replacing ALLSELECTED with ALL or ALLEXCEPT, though you may have to reapply other filters as necessary.

tickets running total in weeks_before 2 =
CALCULATE(
    SUM('sales_over_time (2)'[tickets]),
    FILTER(
        ALLEXCEPT('sales_over_time (2)', 'sales_over_time (2)'[weeks_before]),
        ISONORAFTER('sales_over_time (2)'[weeks_before], MAX('sales_over_time (2)'[weeks_before]), ASC)
    )
)

View solution in original post

2 REPLIES 2
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @davegw ,

Have you solved the problem?

If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

If you still need help, please share some data sample and your desired output so that we could help further on it.

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Cmcmahan
Resident Rockstar
Resident Rockstar

It is working correctly.  When you use ALLSELECTED in your measure, it only returns values that are available to the current visual.  Since you have filtered data from weeks 29-52 via slicer, the data isn't used.

 

You can try replacing ALLSELECTED with ALL or ALLEXCEPT, though you may have to reapply other filters as necessary.

tickets running total in weeks_before 2 =
CALCULATE(
    SUM('sales_over_time (2)'[tickets]),
    FILTER(
        ALLEXCEPT('sales_over_time (2)', 'sales_over_time (2)'[weeks_before]),
        ISONORAFTER('sales_over_time (2)'[weeks_before], MAX('sales_over_time (2)'[weeks_before]), ASC)
    )
)

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.