We have a report where we, among other things, add the total number of particular values of field over a monthly time period. We have documents that are given a status value (SDComment); "approved", "rejected", "Resubmit" etc. and we then total each category(status)for that month in the report footer
I can total the number of each, however, when I try to total the null values in this field in a monthly report footer using the following...
=Sum(IIf([SDComment]="",1,0))
it returns 0.There are records listed during that month with no status set which is correct. Basically,they are ones outstanding and need to be processed.
Any suggestions on summing the records containing this blank field? I've also tried...
=Sum(IIf(IsNull([SDComment],1,0)))
to no avail..
Thanks for your help.
I can total the number of each, however, when I try to total the null values in this field in a monthly report footer using the following...
=Sum(IIf([SDComment]="",1,0))
it returns 0.There are records listed during that month with no status set which is correct. Basically,they are ones outstanding and need to be processed.
Any suggestions on summing the records containing this blank field? I've also tried...
=Sum(IIf(IsNull([SDComment],1,0)))
to no avail..
Thanks for your help.