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!
scott
2
@yosiasz Use the last() function. That will give you the last row in each table.
data
|> last()
thanks @scott ! let me try that