Private Sub CommandButton1_Click()
End Sub
Range("A1") = TextBox1
Welcome to the forum. Behind the command button you can add something like this:
Sheets("Sheet to goto please change the name here").Activate
Range("The cell").Value = Me.TextBoxName.Value
Range("The Next Cell")=Me.TextBoxName2.Value
And so on
Me.Hide
If you want the data to be added to new row you will have to be more specific in your thread.
With Sheets("sheet name here")
Dim NextRow as long
NextRow = .Cells(.Rows.count, "A").End(xlUp).Row + 1
.Cells(nextrow, "A").Value = me.textbox1.text
.cells(nextrow, "B").value = me.textbox2.text
' etc.
end with