Hi,
I have a table that records various 'statuses' about people.
So, the table stores the personId, status, dateInserted, etc., and a person can have multiple status records.
What I need to do is to display only the most recent status record per person (ie, by the max(dateInserted) for that personId's records). Can I do this type of grouping in Crystal, or do I need to do that calculation in sql?
Thanks.
I have a table that records various 'statuses' about people.
So, the table stores the personId, status, dateInserted, etc., and a person can have multiple status records.
What I need to do is to display only the most recent status record per person (ie, by the max(dateInserted) for that personId's records). Can I do this type of grouping in Crystal, or do I need to do that calculation in sql?
Thanks.