What expression do I use to only show the mos...

What expression do I use to only show the most recent row by timestamp?

Iโ€™m using a call log that is referenced to another table.

And the inline table view of the call log is great - every call attempt is listed.

However, I want to have a call status view where only the most recent call attempt is shown provided the call hasnโ€™t been completed.

Iโ€™ve played with virtual columns based on the sample apps, also tried maxrow, orderby, etc. - none work.

0 1 286
1 REPLY 1

the MAXROW expression is the correct one. It will give you the Key value as a result. Then you can read the status column with the deref expression likeโ€ฆ [VirtualMaxrowColumnName].[CallStatus]

Top Labels in this Space