macros

  • Thread starter Thread starter Dorothea
  • Start date Start date
D

Dorothea

I am trying to remove dup rows in an excel spreadsheet,
but my macro only deletes the dup out of the first column,
not the whole row and moves up the next item to replace
what it deleted.

Any suggestions
 
It's easier to work from the bottom towards the top (just in case you're not
doing it now).

And you can do this kind of thing to get rid of a row:

rows(i).delete
cells(i,1).entirerow.delete

But it's difficult to guess without seeing your code.
 

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