Adding numbers in text boxes

Cdogg

Registered User.
Local time
Today, 23:45
Joined
May 20, 2001
Messages
30
Is there any way to add numbers in 5 text boxes without putting a default value in them

Thank you for your help
 
Use the Nz() function.

Nz(Me.fld1,0) + Nz(Me.fld2,0) + ...
 

Users who are viewing this thread

Back
Top Bottom