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

Join 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.

Reply
Anonymous
Not applicable

Latest value per day per group

Hi,

 

I have a table that shows data uploads per table (name) per day. Usually there is only one upload per table per day but in some cases table needs to be updated multiple times in one day. I would like to monitor the rowcount per table per day but these exceptions make it really hard. So, is there a way to filter the latest value per day per group (name)? You can find the pbix here.

 

Julkku_1-1612103898176.png

 

Thank you in advance!

 

Julia

 

 

 

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @Anonymous 

Create a new calculated table:

Table 2 = 
FILTER (
    'Table',
    VAR day_ =
        DATEVALUE ( 'Table'[date] )
    VAR latest_ =
        CALCULATE (
            MAX ( 'Table'[date] ),
            DATEVALUE ( 'Table'[date] ) = day_,
            ALLEXCEPT ( 'Table', 'Table'[name] )
        )
    RETURN
        latest_ = 'Table'[date]
)

 This could also be done in Power Query

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Oh what an embarrasing mistake. More coffee for me 😄 Thank you so much @AlB !

AlB
Community Champion
Community Champion

@Anonymous 

You need  to update the measure correctly. From the results it looks like you are using 'Table' instead of 'Table 2'.

Try:

Last day2 =
CALCULATE (
    SUM ( 'Table 2'[value] ),
    FILTER ( ( 'Table 2' ), 'Table 2'[date] = MAX ( 'Table 2'[date] ) )
)

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

AlB
Community Champion
Community Champion

Hi @Anonymous 

Create a new calculated table:

Table 2 = 
FILTER (
    'Table',
    VAR day_ =
        DATEVALUE ( 'Table'[date] )
    VAR latest_ =
        CALCULATE (
            MAX ( 'Table'[date] ),
            DATEVALUE ( 'Table'[date] ) = day_,
            ALLEXCEPT ( 'Table', 'Table'[name] )
        )
    RETURN
        latest_ = 'Table'[date]
)

 This could also be done in Power Query

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

Anonymous
Not applicable

Hi,

 

Thanks! As a table your solution seems to be working fine but when adding a measure to get the information for the latest day I now only get the same value for each name. The same measure use to work with the original table.

 

The measure I'm using is: 

 
Last day = CALCULATE(
SUM('Table'[value]),
FILTER(('Table'), 'Table'[date] = Max('Table'[date])))
 

Julkku_0-1612108356139.png

 

Julia

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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