ipbr21054
Well-known Member
- Joined
- Nov 16, 2010
- Messages
- 5,831
- Office Version
- 2007
- Platform
- Windows
On my userform TextBox17 should show the value of multiple textboxes like an Autosum.
How is the following correctly written so its not a mile long please.
Thanks
How is the following correctly written so its not a mile long please.
VBA Code:
Private Sub TextBox17_Change()
TextBox17 = Val(TextBox1.Text) + Val(TextBox2.Text) + Val(TextBox3.Text) + Val(TextBox4.Text)
End Sub
Thanks