CameronGates
New Member
- Joined
- Mar 7, 2019
- Messages
- 18
Remember I'm a newb so if I sound ignorant it's because I am, lol. Ok so I'm creating a simple user form that will be using a bunch of text boxes to input data into specified cells. So the code for each one of the text boxes look like this:
Private Sub TextBox1_Change()
Sheet3.Range("b1") = TextBox1.Value
End Sub
There are something like 60 text boxes all with the same code but specifying different cells and text boxes. here is the stupid question, how do I create the command click ok button to actually make it happen. Lol, sorry guys, i'm really new at this. Thanks for any help you guys can give.
Private Sub TextBox1_Change()
Sheet3.Range("b1") = TextBox1.Value
End Sub
There are something like 60 text boxes all with the same code but specifying different cells and text boxes. here is the stupid question, how do I create the command click ok button to actually make it happen. Lol, sorry guys, i'm really new at this. Thanks for any help you guys can give.