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]+....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top