I have as a txt box control source:
=Nz(IinventoryCount].[Form]![MaxDateCount],0)
When there is a date in the MaxDateCount the data is viewed as desired, but when the field is empty I get #size!
Not sure how to handle this, but I did try:
=Nz(IinventoryCount].[Form]![MaxDateCount],NULL)
=Nz(IinventoryCount].[Form]![MaxDateCount]," ")
All efforts have returned #size!
Thanks.