View Full Version : Adding numbers in text boxes


Cdogg
05-23-2001, 03:07 PM
Is there any way to add numbers in 5 text boxes without putting a default value in them

Thank you for your help

Pat Hartman
05-23-2001, 03:11 PM
Use the Nz() function.

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