Macro to Find Column

U

User

I have several spreadsheet with a column for e-mail address. Some cells have
two e-mail addresses. I need to separate the addresses so that there is only
one address per cell, then delete the second address. This is easy to do
using text-to-columns and I recorded a macro to do just that.

The problem is that the column where the addresses are located can change
between files. In one file it's column A. In another file it's column D.
When I record a macro, it's the same column every time (always column A), so
the macro doesn't work for every file.

Can someone give me code that will find the address, then separate them,
then delete the extra?

Thanks!
 
H

Heera Chavan

Record the macro with relative reference and put your cursor on the column
where the email address are and run it.
 
D

Dave Peterson

You may want to have the user select the column and have your macro work with
that (or use the activecell's column).

Or you could find (like Edit|Find) a keyword in the header row (if there is a
header row and the keyword doesn't change (and is unique, too!)).
 

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

Top