C Cdogg Registered User. Local time Today, 23:45 Joined May 20, 2001 Messages 30 May 24, 2001 #1 Is there any way to add numbers in 5 text boxes without putting a default value in them Thank you for your help
Is there any way to add numbers in 5 text boxes without putting a default value in them Thank you for your help
P Pat Hartman Super Moderator Staff member Local time Today, 18:45 Joined Feb 19, 2002 Messages 47,594 May 24, 2001 #2 Use the Nz() function. Nz(Me.fld1,0) + Nz(Me.fld2,0) + ...