Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
I have two running total measures:
1. RunningTotal Past Dates = if the date is less than today, then create a running total of values in actualized savings column based on approved dates.
2. Runnint Total Future dates: if the date is greater than or equal to today, then create a running total of values in future savings columns based on target dates.
I have created running total formulas for both and they work, but the issue is I want the running total of "2." to start with the end of running total past dates aka "1." For example, if we refer to the picture below, I want the running total of the second to be 13.74 + 0.35, instead of starting with 0. Is there any suggestions on achieving this?
Thank you!!
Solved! Go to Solution.
Hi @vai
@Greg_Deckler Thank you very much for your prompt reply and here allow me to share my own method.
Here's some dummy data
"Table"
Create measures.
Running Total Past Dates =
var _today = TODAY()
var _TotalPast =
CALCULATE(
SUM('Table'[Values]),
FILTER(
ALL('Table'),
'Table'[Date] < _today
)
)
RETURN
IF(
SELECTEDVALUE('Table'[Date]) < _today,
_TotalPast,
BLANK()
)
Runnint Total Future dates =
var _today = TODAY()
var _TotalPast =
CALCULATE(
SUM('Table'[Values]),
FILTER(
ALL('Table'),
'Table'[Date] < _today
)
)
var _TotalFuture =
CALCULATE(
SUM('Table'[Values]),
FILTER(
ALL('Table'),
'Table'[Date] >= _today
)
)
RETURN
IF(
SELECTEDVALUE('Table'[Date]) >= _today,
_TotalPast + _TotalFuture,
BLANK()
)
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @vai
@Greg_Deckler Thank you very much for your prompt reply and here allow me to share my own method.
Here's some dummy data
"Table"
Create measures.
Running Total Past Dates =
var _today = TODAY()
var _TotalPast =
CALCULATE(
SUM('Table'[Values]),
FILTER(
ALL('Table'),
'Table'[Date] < _today
)
)
RETURN
IF(
SELECTEDVALUE('Table'[Date]) < _today,
_TotalPast,
BLANK()
)
Runnint Total Future dates =
var _today = TODAY()
var _TotalPast =
CALCULATE(
SUM('Table'[Values]),
FILTER(
ALL('Table'),
'Table'[Date] < _today
)
)
var _TotalFuture =
CALCULATE(
SUM('Table'[Values]),
FILTER(
ALL('Table'),
'Table'[Date] >= _today
)
)
RETURN
IF(
SELECTEDVALUE('Table'[Date]) >= _today,
_TotalPast + _TotalFuture,
BLANK()
)
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@vai This looks like a measure aggregation problem. See my blog article about that here: https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149
The pattern is:
MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
MaxScoreMeasure = MAXX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
AvgScoreMeasure = AVERAGEX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
etc.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |