How do I add TextBox.values?

  • Thread starter Thread starter WTG
  • Start date Start date
W

WTG

How do I add the Values of several Text Boxes

And place it in Another Text Box.

So the Sum of Text Boxes 1 to 13 is printed in text Box 14

Thanks for the Help.

Wally
 
TextBox14.Text = Val(TextBox1.Text) + Val(TextBox2.Text) + ... etc.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Thanks Bob

I'll try better next time to keep it in programming.

Thanks

Wally
 
--

HTH

RP
(remove nothere from the email address if mailing direct)
 
or post it to all groups in one message, it cross-updates then.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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

Back
Top