I want my data to start with row number 5 but instead, the data go straight to the bottom.
Private Sub CommandButton6_Click()
Dim iRow As Long
Dim ws As Worksheet
Set ws = Worksheets("BEAM SUM CONC")
iRow = ws.Cells.Find(What:="*", SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row + 1
With ws
.Cells(iRow, "B") = TextBox1.Value
.Cells(iRow, "C") = TextBox2.Value
.Cells(iRow, "D") = TextBox3.Value
.Cells(iRow, "E") = TextBox4.Value
.Cells(iRow, "F") = TextBox5.Value
.Cells(iRow, "G") = TextBox6.Value
.Cells(iRow, "H") = TextBox7.Value
End With
End Sub
howw?