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
Good morning,
Looking for a measure that can sum a value, in the period selected (also time series graph), of the last time data available. The below image shows the yellow values I'm after. I want it to dynamically always pull the latest available (but not data that would be beyond the date selected).
Just as an FYI, I've tried several last date, max date, measures/formulas from this forum & SQLBI to no avail.
Any tips? Thoughts? Help!?
Thank you & Kindly,
James
Solved! Go to Solution.
Hi @Jkaelin ,
I created a sample you can have a try.
Table 2 = CALENDARAUTO()
Month = MONTH('Table 2'[Date])Month = MONTH('Table'[Date])
Measure =
VAR a =
SELECTEDVALUE ( 'Table 2'[Month] )
RETURN
IF (
ISFILTERED ( 'Table 2'[Month] ),
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
'Table',
'Table'[Month] = a
|| 'Table'[Month]
= CALCULATE ( MAX ( 'Table'[Month] ), ALLEXCEPT ( 'Table', 'Table'[City] ) )
&& CALCULATE ( MAX ( 'Table'[Month] ), ALLEXCEPT ( 'Table', 'Table'[City] ) ) < a
)
),
SUM ( 'Table'[Value] )
)Best Regards,
Xue
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Jkaelin ,
I created a sample you can have a try.
Table 2 = CALENDARAUTO()
Month = MONTH('Table 2'[Date])Month = MONTH('Table'[Date])
Measure =
VAR a =
SELECTEDVALUE ( 'Table 2'[Month] )
RETURN
IF (
ISFILTERED ( 'Table 2'[Month] ),
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
'Table',
'Table'[Month] = a
|| 'Table'[Month]
= CALCULATE ( MAX ( 'Table'[Month] ), ALLEXCEPT ( 'Table', 'Table'[City] ) )
&& CALCULATE ( MAX ( 'Table'[Month] ), ALLEXCEPT ( 'Table', 'Table'[City] ) ) < a
)
),
SUM ( 'Table'[Value] )
)Best Regards,
Xue
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!