text box

M

Mike

You could use this in the Click event of the userform
Const columnA1 = "A1"
Range(columnA).Value = Me.Textbox1.Text
 
Top