Userform Calculations

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
 
H

Harald Staff

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.
 
Top