Deleting Rows

  • Thread starter Thread starter matt_steer
  • Start date Start date
M

matt_steer

I am trying to write a macro that will search in Column A for each cel
that contains a value ending in .01 (so i need wildcards) and the
delete the entire row.

Can anybody help
 
You don't need wildcards if it always ends with .01
if right(cell,3)=".01" then cell.entirerow.delete
 

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.

Ask a Question

Back
Top