Hey, altug,
Here is a table that I believe resembles what you are describing (but assume it is in a database rather than JMP):
My understand is that you would like to retrieve one row for A1, A2, A3, and A4 for which Time is the maximum. Is that correct?
I do not believe that is possible without doing a subquery that uses the MAX function, which you can do using a Custom Expression filter. Here is the query I ended up with:
In case that is too small to read, the custom expression is:
t1.Time = (select MAX(Time) from parts t2 where t1.Asset = t2.Asset)
So you pass in the value of Asset from the main query (t1.Asset) and select rows that have the maximum Time value for that asset.
Let me know if that helps.
Eric