Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi everyone,
I have a table that looks something like this;
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 🙂
Solved! Go to 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:
For the related .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
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:
For the related .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 46 | |
| 30 | |
| 24 | |
| 23 |
| User | Count |
|---|---|
| 143 | |
| 111 | |
| 63 | |
| 38 | |
| 32 |