How do I get data that I enter in the "text box" to show in collumn A1
M Mike Jul 7, 2007 #3 You could use this in the Click event of the userform Const columnA1 = "A1" Range(columnA).Value = Me.Textbox1.Text
You could use this in the Click event of the userform Const columnA1 = "A1" Range(columnA).Value = Me.Textbox1.Text