In a report, I have a field [SeqNumber]. I also have a text box that counts the number of records returned by the query that the report is based on:
=Nz(IIf(IsNull([SeqNumber]),"0",Count([SeqNumber])))
The above works just fine in this one report, but if I add it to another report as a subreport, the string "0" will not appear if [SeqNumber] is null. Nonzero values show up just fine, though. Help anyone? Thanks.
=Nz(IIf(IsNull([SeqNumber]),"0",Count([SeqNumber])))
The above works just fine in this one report, but if I add it to another report as a subreport, the string "0" will not appear if [SeqNumber] is null. Nonzero values show up just fine, though. Help anyone? Thanks.