Report Sum

B

BarryC

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?
 
D

Duane Hookom

Don't know how "a text box that calculates a sum" is created. You might be
able to use
=Nz(Sum([YourNumericField]),0)
 
Top