text box

  • Thread starter Thread starter Guest
  • Start date Start date
You could use this in the Click event of the userform
Const columnA1 = "A1"
Range(columnA).Value = Me.Textbox1.Text
 
Back
Top