userform txt box updates spreadsheet

D

dok112

Ok...I have a template spreadsheet that is attached to a userform that
created. When I type in TextBox1, I want it to put that data into cel
C4. What is the correct code
 
T

Tom Ogilvy

Private Sub Textbox1_AfterUpdate()
ActiveSheet.Range("C4").Value = _
Textbox1.Value
End Sub
 
Top