Combing columns of data

M

marianne

I need to take 3 columns of data and combine them into
one.

example:

col1 col2 col3
abc def 123
452 jkl mno

result should be:

col4
abcdef123
452jklmno

I can concatenate each row of all 3 columns but I have
hundreds of rows from several worksheets. Is there a way
to do this in excel using a formula, macro or VBA?
 
G

Guest

try this:
=col1&col2&col3

If you want to insert "-" try this:
=col1&"-"&col2&"-"&col3
 

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