View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default userform txt box updates spreadsheet

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

--
Regards,
Tom Ogilvy

"dok112 " wrote in message
...
Ok...I have a template spreadsheet that is attached to a userform that I
created. When I type in TextBox1, I want it to put that data into cell
C4. What is the correct code?


---
Message posted from http://www.ExcelForum.com/