Report Sum

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a text box that calculates a sum. When the sum is zero nothing
populates the text box. I would like a zero to populate the text box. How
would I do that?
 
Don't know how "a text box that calculates a sum" is created. You might be
able to use
=Nz(Sum([YourNumericField]),0)
 
Back
Top