Several ways
1. data>filter>autofilter>filter on the x>delete
2. a looping macro from the bottom up
sub delifx()
for i=cells(rows.count,"a").end(xlup).row to 2 step -1
if lcase(cells(i,"a'))="x" then rows(i).delete
next i
end sub
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.