I was searching in many pages but couldn't find a way to find the first row in the range after the last used row and put the TextBox values from A"n" to Z"n" was possible, the only thing that I could find was to check only a single column. Hope someone would help.
Private Sub CommandButton1_Click()
Dim ws As Worksheet
Set ws = Worksheets("Sheet")
Dim newRow As Long
newRow = Application.WorksheetFunction.CountA(ws.Range("A:A")) + 1
'newRow = Application.WorksheetFunction.CountA(ws.Range("A:Z")) + 1 this was an experiment
ws.Cells(newRow, 2).Value = TVehicle.Value
ws.Cells(newRow, 3).Value = TPlace.Value
ws.Cells(newRow, 4).Value = TRange.Value
ws.Cells(newRow, 5).Value = TOD.Value
ws.Cells(newRow, 6).Value = TIC.Value
ws.Cells(newRow, 7).Value = TEC.Value
ecc...
End Sub