Hi Pike
Thanks for the response. Here is the codes for the Excel Document that I'm using: In the actual spreadsheet it's pretty straight forward - A1 = Date A2 Credit Card A3 B-Pay A4 Other
Thanks once again for your help 
Private Sub cmdbuttcont_Click()
Dim iRow As Long
Dim ws As Worksheet
Set ws = Worksheets("Ptp_Worksheet")
'find first empty row in database
iRow = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 0).Row
'copy the data to the database
With ws
.Cells(iRow, 1).Value = Me.TxtDate.Value
End With
End Sub
Private Sub opbuttccard_click()
Range("B2") = Me.txtboxamt1.Value
End Sub
Private Sub opbuttbpay_click()
Range("C2") = Me.txtboxamt1.Value
End Sub
Private Sub opbuttpoffice_click()
Range("D2") = Me.txtboxamt1.Value
End Sub
Private Sub opbuttother_click()
Range("E2") = Me.txtboxamt1.Value
End Sub
Private Sub UserForm_Initialize()
Me.TxtDate.Value = Format(Date, "Medium Date")
End Sub
Bookmarks