Forum Discussion

Diaze2108's avatar
Diaze2108
Frequent Visitor
1 year ago
Solved

Displaying Latest Timestamp per Location in Table Visual with DirectQuery

Hi everyone, I'm facing a challenge in Power BI and would appreciate any assistance or suggestions you might have.   Background: I have a dataset where data snapshots are collected every 5 minute...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi Diaze2108 

     

    Please try using this measure below, I hope it helps.

    LatestData = 
    VAR LatestTimestamp = 
        CALCULATE(
            MAX(Snapshots[Timestamp]),
            ALLEXCEPT(Snapshots, Snapshots[Location])
        )
    RETURN
        CALCULATE(
            MAX(Snapshots[DataColumn]),  //Replace with your data columns
            FILTER(
                Snapshots,
                Snapshots[Timestamp] = LatestTimestamp
            )
        )

     

    Best Regards,
    Jarvis Tang
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.