Private Sub btnSubmit_Click()
Dim ws As Worksheet
Set ws = [Link]("Customers")
Dim nextRow As Long
nextRow = [Link]([Link], 1).End(xlUp).Row + 1
[Link](nextRow, 1).Value = nextRow - 1 ' Customer ID
[Link](nextRow, 2).Value = [Link]
[Link](nextRow, 3).Value = [Link]
[Link](nextRow, 4).Value = [Link]
[Link](nextRow, 5).Value = [Link]
[Link](nextRow, 6).Value = [Link]
[Link](nextRow, 7).Value = [Link]
[Link](nextRow, 8).Value = Date ' Created Date
[Link](nextRow, 9).Value = "" ' Last Contacted
[Link](nextRow, 10).Value = [Link]
MsgBox "Customer added successfully!", vbInformation
Unload Me
End Sub
Private Sub btnCancel_Click()
Unload Me
End Sub