I've been at this for an hour already. I simply want to filter the table, then delete the rows that have been filtered and are visible, leaving only the rows that were not filtered in an essentially "new" table.
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
I've tried multiple methods and googling, and nothing is coming close to what I need.