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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
shinney
Helper I
Helper I

Possible to show only records of last update date for entire report?

My report contains multiple entries for the same person, with a time stamp of each time it got updated. This is messing up the overall license count, since it's summing up every single row, whereas I only need the latest updated rows. I would need this to apply to my entire report (ie. filters need to reflect this), so I can't just select the 'Latest' aggregate on the visuals.
So for example, if the data contains:

NameLicenseLast_Update
AlexEnterpriseJune 1, 2021
AlexStandardSept 1, 2021
BobStandardSept 15, 2021
CamEnterpriseSept 15, 2021
AlexProfessionalOct 1, 2021

I want only the last 3 rows should show up in my report & visuals.

 

Is this possible? Thanks.

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

@shinney 

You could add a calculated column to your table to flag only the newest updates like this.

Is Newest Update = 
YourTable[Last_Update] = CALCULATE(MAX(YourTable[Last_Update]),ALLEXCEPT(YourTable,YourTable[Name]))

jdbuchanan71_0-1633554272362.png

Then apply a filter to your report for [Is Newest Update] = TRUE

View solution in original post

2 REPLIES 2
jdbuchanan71
Super User
Super User

@shinney 

You could add a calculated column to your table to flag only the newest updates like this.

Is Newest Update = 
YourTable[Last_Update] = CALCULATE(MAX(YourTable[Last_Update]),ALLEXCEPT(YourTable,YourTable[Name]))

jdbuchanan71_0-1633554272362.png

Then apply a filter to your report for [Is Newest Update] = TRUE

Thanks! I couldn't get the Calculate nor the Allexcept functions to work when I'm trying to insert the calculated column as suggested ... but your logic inspired a different formula:

NewestUpdate = If (Table[LastUpdate]=MAX(Table[LastUpdate),True,False).
 
I then added the filter for NewestUpdate is True on all pages and it seemed to work!

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.