adding textboxes

D

don

i have a form with seven textboxes that have a numeric
value. i want to total the value in a textbox. i have
tried the sum([text1]+[text2]....) but it does not return
a value. any suggestions
 
G

Graham Mandeno

Hi Don

The Sum function is ised to total all the fields of the same name in a
recordset. You just need a simple addition expression:
=[text1]+[text2]+....
 
Top