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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.