Hello,
I need your help to sort this issue.
I have userform with three numeric text items, two take input from the user and third used to display the result.
As you can see the following snippet which will show result by pressing CommandButton1 after taking inputs from the users. Now my intentions to remove the button and to display the result automatically when user enter the values in gross.text and eprem.text. Kindly advise!
Private Sub CommandButton1_Click()
Dim param1 As Double
Dim param2 As Double
param1 = gross.Text
param2 = eprem.Text
TextBox4 = param1 + param2
End Sub
Bookmarks