Hi,
Giving a precise answer to such a vague question is difficult. In principle there are 4 steps in doing this
1. Collect the data in the Userform
2. Verify the data are complete i.e. no missing fields
3. Ensure the data are of the correct type i.e. numbers, dates or strings for example.
4. Write the data to a worksheet to store it.
With regard to steps 1,2 & 3 you have provided no information.
Here's a very simple (and crude) bit of code that utilises a button to write the data from three text boxes to the first empty row on a sheet.
Private Sub CommandButton1_Click()
Dim Lastrow As Long
Set sht = Sheets("Sheet1")
Lastrow = sht.Cells(Cells.Rows.Count, "A").End(xlUp).Row + 1
sht.Cells(Lastrow, 1) = TextBox1.Text
sht.Cells(Lastrow, 2) = TextBox2.Text
sht.Cells(Lastrow, 3) = TextBox3.Text
End Sub
If this post answers your question, please mark it as the Answer.
Mike H