Combine columns of data into one

N

Naruto

Hi, I want to combine columns of data into one, e.g.
to combine column 1, 2 and 3 into column 4

column 1 column 2 column 3 column 4
1 a i 1
2 b ii a
3 c iii i
4 d iv 2
5 e v b
6 f vi ii
7 g vii 3
....

Thanks in advance.
 
R

Roger Converse

In your empyt column:

= A1 & B1 & C1 & .......

If you want a space or character in between:

= A1 & "-" & B1 & "-" & C1 & "-" & .......

Thanks,
Roger
 

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