Hello!
I have three combo boxes, 1 2 and 3.
Trying to work out 22% of combo box 1 and put the value in combo two and the total in combo three, its works, but I only want it to return to decimal places!
Help!!!
Private Sub CommandButton1_Click()
TextBox2.Value = TextBox1.Value * 0.22
TextBox3.Value = TextBox1.Value * 1.22
End Sub
I have three combo boxes, 1 2 and 3.
Trying to work out 22% of combo box 1 and put the value in combo two and the total in combo three, its works, but I only want it to return to decimal places!
Help!!!
Private Sub CommandButton1_Click()
TextBox2.Value = TextBox1.Value * 0.22
TextBox3.Value = TextBox1.Value * 1.22
End Sub