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
Anonymous
Not applicable

Devices with latest status based on the time

I have a dataset connected live to the Power BI dataset using Azure Analytics Streams.

 

I would like to show a table visualization showing all the devices with their latest status based on the time.

 

Please note I can not use power query, only I can create measure as the data is coming from the Power Bi dataset.

 

ID

Time

Status

Status Flag

1001

08/04/2021 04:04:21

00

Offline

1001

08/04/2021 04:04:20

10

Online

1002

08/04/2021 04:04:19 

10

Online

 

Expected output:

ID

Time

Status

Status Flag

1001

08/04/2021 04:04:21

00

Offline

1002

08/04/2021 04:04:19 

10

Online

 

Thank you in advance for your help.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , In a visual, take ID,  time, max of time, and create two measures like the one given below status flag and status

 

Status flag final=
VAR __id = MAX ('Table'[ID] )
VAR __date = CALCULATE ( MAX('Table'[Time] ), ALLSELECTED ('Table' ), 'Table'[ID] = __id )
CALCULATE ( max ('Table'[Status Flag] ), VALUES ('Table'[ID] ),'Table'[ID] = __id,'Table'[Time] = __date )

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , In a visual, take ID,  time, max of time, and create two measures like the one given below status flag and status

 

Status flag final=
VAR __id = MAX ('Table'[ID] )
VAR __date = CALCULATE ( MAX('Table'[Time] ), ALLSELECTED ('Table' ), 'Table'[ID] = __id )
CALCULATE ( max ('Table'[Status Flag] ), VALUES ('Table'[ID] ),'Table'[ID] = __id,'Table'[Time] = __date )

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

Thank you so much it works

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!

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.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.