The following works to add a new row to the end of the table and unlock that row. However, I keep getting "Run-Time Error 424: Object Required" despite completing the action.
Don't know why this is happening.
Sub AddRowToTable()Dim ws As WorksheetDim tbl As ListObjectDim lastRow As ListRowSet ws = ActiveSheetSet tbl = ws.ListObjects("Table1")tbl.ListRows.Add Set lastRow = tbl.Range.Rows(tbl.Range.Rows.Count).RowlastRow.Locked = FalseEnd Sub