Hi again, I have just tried the new code and I am getting the error code - Run time error - '9', Subscript out of range
any ideas?
code below
Private Sub btnAdd_Click()
With Sheets("Sheet2")
rowCounter = 4
While Cells(rowCounter, 3).Value <> ""
rowCounter = rowCounter + 1
Wend
.Cells(rowCounter, 3).Value = tbxDate.Text
.Cells(rowCounter, 4).Value = tbxDescription.Text
.Cells(rowCounter, 5).Value = tbxAmount.Text
End With
End Sub
I don't know if this will help but the first line of data needs to be entered onto row 4, column C.
Many Thanks
Bookmarks