Basic concatenate question

J

JG

I have 3 columns of over 900 rows of numbers. I need to combine each rows
numbers with comma separated.

Example
123 456 789 needs to be 123,456,789

I tried =A1&B1&C1 but this will not give me a comma separated number.

Thank you for any help you can give.
 
N

Norman Harker

Hi JG!

If it's a number you want:

=--(A1&B1&C1)

Format as a number using 1000 separator.

If it's text you want:

=A1&","&B1&","&C1
Or:
=TEXT(A1&B1&C1,"###,###,###")

--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 
J

JG

Thanks I'm back on track!


Norman Harker said:
Hi JG!

If it's a number you want:

=--(A1&B1&C1)

Format as a number using 1000 separator.

If it's text you want:

=A1&","&B1&","&C1
Or:
=TEXT(A1&B1&C1,"###,###,###")

--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 

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