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

Need Help with Filters on a running sum

Hi everyone, 

 

I have a table that looks something like this;PBI.PNG

 and I want to be able to create a running total of the amount column and have two slicers controlling the output.

The first slicer is country which shows only the states in the country when triggered 

the second slicer (where the magic happens) is for state, and gives the sum for the respective state

 

My current formula (below) only returns the sum on a country level but not a state level

 

 

Amount Targeted = 
VAR endOfPeriod = MAX ( 'Calendar'[Date] )

VAR startOfPeriod = MIN( 'Calendar'[Date] )

RETURN
    CALCULATE (
        SUM(Table[amount]),
        FILTER (
            ALL(Table),
               ( Table[Date] <= endOfPeriod
                         
        )
    ))

 

 

 Thank you in advance for your help 🙂 

1 ACCEPTED SOLUTION

Hi @sloane ,

 

Create a measure as below:

 

Measure = IF(ISFILTERED('Table'[State]),
 CALCULATE(SUM('Table'[Amount]),FILTER(ALLSELECTED('Table'),'Table'[Date]<=MAX('Table'[Date])&&'Table'[State]=SELECTEDVALUE('Table'[State]))),
 CALCULATE(SUM('Table'[Amount]),FILTER(ALLSELECTED('Table'),'Table'[Date]<=MAX('Table'[Date]))))

 

And you will see:

v-kelly-msft_0-1613542999684.png

 

v-kelly-msft_1-1613543009140.png

v-kelly-msft_2-1613543016758.png

 

For the related .pbix file,pls see attached.

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

 

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@sloane , Try like

Amount Targeted =

CALCULATE (
SUM(Table[amount]),
FILTER (
ALLSELECTED(Table),
( Table[Date] <= max(Table[Date])

)
))

Thanks but this still doesnt work when I filter the state slicer. It only works when I filter the country slicer

Hi @sloane ,

 

Create a measure as below:

 

Measure = IF(ISFILTERED('Table'[State]),
 CALCULATE(SUM('Table'[Amount]),FILTER(ALLSELECTED('Table'),'Table'[Date]<=MAX('Table'[Date])&&'Table'[State]=SELECTEDVALUE('Table'[State]))),
 CALCULATE(SUM('Table'[Amount]),FILTER(ALLSELECTED('Table'),'Table'[Date]<=MAX('Table'[Date]))))

 

And you will see:

v-kelly-msft_0-1613542999684.png

 

v-kelly-msft_1-1613543009140.png

v-kelly-msft_2-1613543016758.png

 

For the related .pbix file,pls see attached.

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

 

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.

Top Solution Authors