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! Learn more
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.
 
					
				
				
			
		
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 | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 13 | |
| 10 | |
| 10 | |
| 9 | |
| 8 |