Hi Megan
If your Table is an Excel Table like the one in the sample picture below
Then try this code
******************************************************************************************
Sub AddRowToTable()
Dim ws As Worksheet
Dim tbl As ListObject
Set ws = ActiveSheet
Set tbl = ws.ListObjects("The Name of your table")
tbl.ListRows.Add '' This line will add a row at the end of the table
End Sub
**************************************************************************************************
Replace "The Name of your table" with the real name of the table on your side.
Do let me know if you need more help
On the other hand,
If the answer helped you.
Please, consider marking this thread as answered.
It would help others in the community with similar questions or problems.
Thank you in advance
Regards
Jeovany