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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
susheeltyagi
Helper I
Helper I

How to display the most Latest Record

Hi,

 

I am new in Power BI. I would like to get the latest records (most recent timestamp) per Serial No.

Currently I am getting the below :

 
 

Capture.JPG

My Expectation is :

 

Table Name = Devices

 

SerialNo             Status                  Timestamp
090500925     Connected            2020-09-03 12:06:21

031000694      Connected           2020-09-03 08:51:57

 

 

Please help me

 

Thanks

 

Susheel

 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@susheeltyagi 

You can create ht ebelow measure and assign it to the Visual Filter of the Table Visial and set it to 1

Measure = 
VAR SN = MAX(Devices[SERIAL NO]) RETURN
VAR _MAX = MAXX(
    FILTER( ALL(Devices),
        Devices[SERIAL NO] = SN
    ),
    Devices[TIME STATUS]
)

RETURN

IF( SELECTEDVALUE(Devices[TIME STATUS]) = _MAX , 1,0)

 

Fowmy_0-1599162888329.png

 

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
FrankAT
Community Champion
Community Champion

Hi @susheeltyagi 

take a look at the following solution:

03-09-_2020_21-58-07.png

 

With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)

 

 

 

Fowmy
Super User
Super User

@susheeltyagi 

You can create ht ebelow measure and assign it to the Visual Filter of the Table Visial and set it to 1

Measure = 
VAR SN = MAX(Devices[SERIAL NO]) RETURN
VAR _MAX = MAXX(
    FILTER( ALL(Devices),
        Devices[SERIAL NO] = SN
    ),
    Devices[TIME STATUS]
)

RETURN

IF( SELECTEDVALUE(Devices[TIME STATUS]) = _MAX , 1,0)

 

Fowmy_0-1599162888329.png

 

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.