Forum Discussion
Get latest Time
HI everyone,
hope someone can help me 🙂
I have the following Table. What i am aiming for is to have the latest "Time" where a Server was "Online".
The Table contains different Servers with different Status and Time. For example, i want to have for Server A the Time "Wed, 20 Mar 2024 15:51:17" as it is the alst online Time.
i would show that "latest online" with dropdown menu or a checkbox. How is that possible?
| Servername | Status | Time |
| Server A | Online | Wed, 20 Mar 2024 15:51:17 |
| Server A | Online | Mon, 18 Mar 2024 15:50:51 |
| Server A | Offline | Wed, 13 Mar 2024 15:52:59 |
| Server B | Online | Wed, 06 Mar 2024 15:50:14 |
| Server B | Online | Mon, 04 Mar 2024 15:58:29 |
| Server B | Online | Mon, 04 Mar 2024 15:58:29 |
4 Replies
- some_bihCommunity Champion
- stefan321Helper I
HI
thanks, but it should only show latest for server with status "Online"
Is it possobie with a measure / DAX query ?- AnonymousNot applicable
You can try to create a measure like this : measure = CALCULATE(MAX(time), Status = "Online")
Or
If you only want the status "online" in your visual, you can add filtre in the filter panel with the column "status" and the value "online"