mnmdesigns
MIS
I am using CR 10 with SQL Server 2000. My groups are based on the formula which is like this.
if (not isnull({cr_activeemployee.formal_filed})and
(not isnull({cr_activeemployee.issued_accpt_ltr})or
not isnull({cr_activeemployee.issued_part_accpt_ltr}))and
isnull({cr_activeemployee.issued_dismissal_ltr})
then 'Pending Hearing'
else
'Error'
The problem I am having is with the following condition. (not isnull({cr_activeemployee.issued_accpt_ltr})or
not isnull({cr_activeemployee.issued_part_accpt_ltr}))
There are some situations where both of these dates are not null. If so then I would like to show the latest one. Can someone please help me with this?
if (not isnull({cr_activeemployee.formal_filed})and
(not isnull({cr_activeemployee.issued_accpt_ltr})or
not isnull({cr_activeemployee.issued_part_accpt_ltr}))and
isnull({cr_activeemployee.issued_dismissal_ltr})
then 'Pending Hearing'
else
'Error'
The problem I am having is with the following condition. (not isnull({cr_activeemployee.issued_accpt_ltr})or
not isnull({cr_activeemployee.issued_part_accpt_ltr}))
There are some situations where both of these dates are not null. If so then I would like to show the latest one. Can someone please help me with this?