is there a way to make a textbox iput data to a named data?
I cant seem to figure it out.
What I have to far:
Private Sub CommandButton1_Click()
Dim iRow As Long
Dim WS As Worksheet
Set WS = Worksheets("DataSheet")
'copy the data to the database
WS.Cells(3, 15).Value = Me.TextBox1.Value
End Sub
Cell O3/(3,15) is named Thickness. I would like for textbox1 to equal Thickness
I cant seem to figure it out.
What I have to far:
Private Sub CommandButton1_Click()
Dim iRow As Long
Dim WS As Worksheet
Set WS = Worksheets("DataSheet")
'copy the data to the database
WS.Cells(3, 15).Value = Me.TextBox1.Value
End Sub
Cell O3/(3,15) is named Thickness. I would like for textbox1 to equal Thickness