Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi everyone.
So, I have a nice running total measure to measure daily subscribers, tied to my date table. If I add a slicer filter to focus on a certain period however the running total will change, because the measure will ignore the results earlier than the lower date filter.
Is there a way to ignore the filter just for the measure calculation and apply it to the visual?
I avoided creating a second table with the totals because with the measure I keep relations that I can use for advanced visuals.
Subscriptions running total =
CALCULATE(
SUM('Users subscriptions history'[Sub Balance]),
FILTER( ALLSELECTED('Date'[Date]),
ISONORAFTER('Date'[Date], MAX('Date'[Date]), DESC)
)
)
Solved! Go to Solution.
@TheProv Would have to know your measure formula for your running total.
You're right, sorry:
Subscriptions running total =
CALCULATE(
SUM('Users subscriptions history'[Sub Balance]),
FILTER( ALLSELECTED('Date'[Date]),
ISONORAFTER('Date'[Date], MAX('Date'[Date]), DESC)
)
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 9 | |
| 8 |