Create Slice of Newest Row Entry Only

I am trying to create a slice that contains the newest entry only.  I see how to create a slice based on a date but not how to just make a slice of the newest entry and limit it to only that newest row.

0 2 59
2 REPLIES 2

If you have a โ€œtimestampโ€ column, then:

[timestamp] = MAX(table[timestamp])

 otherwise:

[_RowNumber] = MAX(table[_RowNumber])

Thanks, worked like a charm.

Top Labels in this Space