rbh123456789
Technical User
CR 11.5
I have a bit of an issue right now. I'm pretty sure i know the answer, but need a fresh perspective.
Currently, I am Grouping my date on some CaseID's.
The problem is that i need to order the records by the Date field of the record. There are multiple dates per CaseID.
I am using a forumla (thanks to lbass) which displays the appropriate date based on some business logic. Forumula below.
if isnull({table.date1}) then
(
if isnull({table.date2}) then
{table.date3} else
if not isnull({table.date2}) then
{table.date2}
) else
{table.date1}
The problem is that since i am grouping on the CaseID, i cannot order by the date field to list them oldest to newest.
Any ideas!!????
I have a bit of an issue right now. I'm pretty sure i know the answer, but need a fresh perspective.
Currently, I am Grouping my date on some CaseID's.
The problem is that i need to order the records by the Date field of the record. There are multiple dates per CaseID.
I am using a forumla (thanks to lbass) which displays the appropriate date based on some business logic. Forumula below.
if isnull({table.date1}) then
(
if isnull({table.date2}) then
{table.date3} else
if not isnull({table.date2}) then
{table.date2}
) else
{table.date1}
The problem is that since i am grouping on the CaseID, i cannot order by the date field to list them oldest to newest.
Any ideas!!????