I would like to re-order the results in the Attributes Pane by DATE descending, so that the most recent comment record appears first in the list, using the table's properties (Properties > Display > Display field expressions).
I have a feature class named 'Buildings' that has a Relate with a standalone table named 'Comments Table', where users can add comments.
Currently I have the display expression set as:
return 'Comment ID: ' + $feature.ADDRESS_COMMENT_ID + '; Date: ' + Text($feature.DATE, 'M/D/Y hh:mm A');

Any help is appreciated, thank you!