- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Select latest timestamp (String)
Hi all,
How can I select the rows with the same ID and code values but with the latest timestamp?
Sample Data:
Expected Output:
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Select latest timestamp (String)
Convert the time to Numeric (Datenum) and then use
<< Select Where(:Time == Col Max(:Time, :ID))
-Jarmo