March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
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.
Solved! Go to Solution.
@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 )
@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 )
Thank you so much it works
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
86 | |
73 | |
57 | |
52 |
User | Count |
---|---|
201 | |
137 | |
108 | |
73 | |
68 |