Crystal 8.0
The three fields I'm using are Acctno(number), Suspended
("s" or "a" and Date(datetime). What I'm tring to do is pull a report to show all acct's that are currently suspended("s" My problem is that the Suspended field does not update from "s" to "a", it just adds another instance of the account. Example of the table:
Acctno: Suspended: Date
10555 s 10/21/01/Time
10555 a 10/21/01/Time
10555 s 10/22/01/Time
10555 a 10/22/01/Time
10555 s 10/22/01/Time
My question is how do I code or query to bring in just the accounts that are still suspended. I believe two ways would work, but I help on both.
1: By looking at the datetime field and if the last instance is an "s" that would mean the acct is still suspended.
2. If there is more "s" than "a" for an acctno the loan would be still suspended.
Hopefully, the above is understandable and thanks for any help anybody can give me on this..
The three fields I'm using are Acctno(number), Suspended
("s" or "a" and Date(datetime). What I'm tring to do is pull a report to show all acct's that are currently suspended("s" My problem is that the Suspended field does not update from "s" to "a", it just adds another instance of the account. Example of the table:
Acctno: Suspended: Date
10555 s 10/21/01/Time
10555 a 10/21/01/Time
10555 s 10/22/01/Time
10555 a 10/22/01/Time
10555 s 10/22/01/Time
My question is how do I code or query to bring in just the accounts that are still suspended. I believe two ways would work, but I help on both.
1: By looking at the datetime field and if the last instance is an "s" that would mean the acct is still suspended.
2. If there is more "s" than "a" for an acctno the loan would be still suspended.
Hopefully, the above is understandable and thanks for any help anybody can give me on this..