G
Guest
I have a report that counts the number of projects people have started or
finished based on date fields. I was able to count the projects started using:
=Abs(Sum([Auditor] And IsNull([Ph2c])))
But I am unable to count the number of projects finished. I want to say,
basically, Count "Auditor" if Ph2c is not Null.
I have tried:
=Abs(Sum([Auditor] And IsNotNull([Ph2c])))
=Abs(Sum([Auditor] And [Ph2c]="Like #"))
=Abs(Sum([Auditor] And [Ph2c]="#Like *#"))
=Abs(Sum([Auditor] And [Ph2c]="Like *"))
=Abs(Sum([Auditor] And [Ph2c]="#1/1/1900#"))
But none of these things have worked. Any ideas?
finished based on date fields. I was able to count the projects started using:
=Abs(Sum([Auditor] And IsNull([Ph2c])))
But I am unable to count the number of projects finished. I want to say,
basically, Count "Auditor" if Ph2c is not Null.
I have tried:
=Abs(Sum([Auditor] And IsNotNull([Ph2c])))
=Abs(Sum([Auditor] And [Ph2c]="Like #"))
=Abs(Sum([Auditor] And [Ph2c]="#Like *#"))
=Abs(Sum([Auditor] And [Ph2c]="Like *"))
=Abs(Sum([Auditor] And [Ph2c]="#1/1/1900#"))
But none of these things have worked. Any ideas?