Userform Calculations

  • Thread starter Thread starter Wayne
  • Start date Start date
W

Wayne

Hello,

I would like to create a userform the will calculate the
values in a series of textbox's and display the result in
another textbox.

Eg. User enters numbers into Textbox1, Textbox2 &
Textbox3, result displayed in Textbox3.

so, 1 + 2 = 3

How can I do this?

Thanks
 
Hi

Short answer:
Textbox3.Text = Val(Textbox1.Text) * Val(Textbox2.Text)
But these tasks can be refined for weeks and weeks stuffing more and more programming ito
it.
 

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