Latest row when duplicate rows

given the below sample data, how can I bring only the latest rows for a specific item that could have more than one rows just different timestamps?

Thanks!

@yosiasz Use the last() function. That will give you the last row in each table.

data
    |> last()
1 Like

thanks @scott ! let me try that