Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Jkaelin
Resolver I
Resolver I

Measure that should display the sum, in the period selected, of last time data available

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.

 

 

LastDate Power BI.PNG

 

Any tips?  Thoughts?  Help!?

 

Thank you & Kindly,

James

1 ACCEPTED SOLUTION
v-xuding-msft
Community Support
Community Support

Hi @Jkaelin ,

I created a sample you can have a try.

  • create a calendar table and a column of month as a slicer.
Table 2 = CALENDARAUTO()
Month = MONTH('Table 2'[Date])

1.PNG

  • create a calculated column of month in original table and create a measure to implement it.
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] )
    )

2.PNG3.PNG

Best Regards,

Xue

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-xuding-msft
Community Support
Community Support

Hi @Jkaelin ,

I created a sample you can have a try.

  • create a calendar table and a column of month as a slicer.
Table 2 = CALENDARAUTO()
Month = MONTH('Table 2'[Date])

1.PNG

  • create a calculated column of month in original table and create a measure to implement it.
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] )
    )

2.PNG3.PNG

Best Regards,

Xue

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors