I am creating a report to list records that are active, closed , overdue or active with no due date. I have formula's set up for these. The formula to check for records with no due date that is not closed is as follows:
If IsNull ({CCM_MASTER_1_ACT.DUE}) and Isnull ({CCM_MASTER_1_ACT.CLOSED}) Then
1 else
0
I can then sum these and hide the details. The problem I am getting a 1 when only one of these fields are null. Does anyone know of a better way to do this? Thank You.
If IsNull ({CCM_MASTER_1_ACT.DUE}) and Isnull ({CCM_MASTER_1_ACT.CLOSED}) Then
1 else
0
I can then sum these and hide the details. The problem I am getting a 1 when only one of these fields are null. Does anyone know of a better way to do this? Thank You.