I want to filter the table, then delete the rows that are visible, leaving only the rows that were not filtered in an essentially "new" table.
Sub DeleteRows()
Dim ws As Worksheet
Set ws = Sheets("Score")
Set TestTable = ws.ListObjects("Score")
With ws
.Range(TestTable & "[Correct/Incorrect]").AutoFilter 6, "Correct"
.Range(TestTable & "[Correct/Incorrect]").Offset(1, 0).SpecialCells(xlCellTypeVisible).EntireRow.Delete
.AutoFilterMode = False
End With
End Sub