Hello,, i am currently using the folliwng vba to remove unwanted rows, however as the data grows the refresh time is not very fast.
iLastRow = Cells(Rows.Count, "g").End(xlUp).Row
For i = iLastRow To 1 Step -1
If Cells(i, "j").Value = "xxx" Then
Rows(i).delete...