This is the command button code that takes me to user form.
Sub Button12_Click()
UserForm2.Show
End Sub
This is the code for the text box
Private Sub TextBox1_Change()
ActiveSheet.Unprotect Password:=""
Range("V58,Q10").Value = TextBox1.Value
ActiveSheet.Protect Password:=""
End Sub
Yes I would like the last bit of information to remain in text box untill I enter different information in textbox.I will eventually have quit a few invoice spreadsheets in workbook,so I would want text box to refer to active sheet If you could help me with this I would appreciate it Thanks
Bookmarks