Hello again.
I am trying to get totals for my numerous SUB reports.
I wrote a Crosstab query that shows blanks where I need to insert 0 (Zero).
Dataype is Numeric. I had tried
IIf(Nz([Field1]),[Field1],0)
IIf(IsNull([Field1]),0,[Field1])
IIf(([Field1])="",0,[Field1])
and many variances of...