I have an unbound calculated text box for each record on the report. I am trying to do a count on this calculated field but it always gives a pop up what that field value is.
I few variations I have tried are
=count(txtNew) , =count([txtNew]) and =count(iif([txtNew] = 1, 1, 0))
and I...