adding textboxes

  • Thread starter Thread starter don
  • Start date Start date
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
 
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]+....
 
Back
Top