Concatenate Columns

Joined
May 9, 2002
Messages
2
I have some customers that email spreadsheets of three and four columns that I need all the information in one column.

Such as:

Column 1; Column 2; Column 3
Last name, First name; Social Security #; Date

I need this information to appear as one column as follows:

Last name, First name; Social Security; Date

This will then be cut and pasted in to an access database.

Thank you,
Jennie

Jennifer J. Weislak
XEROX Business Services
jweislak@xbs-toledo.com
419-248-7336
This message was edited by jweislak@xbs-toledo.com on 2002-05-10 07:40
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
On 2002-05-10 07:39, jweislak@xbs-toledo.com wrote:
I have some customers that email spreadsheets of three and four columns that I need all the information in one column.

Such as:

Column 1 Column 2 Column 3
Last name, First name Social Security # Date

I need this information to appear as one column as follows:

Last name, First name; Social Security; Date

This will then be cut and pasted in to an access database.

Thank you,
Jennie

Jennifer J. Weislak
XEROX Business Services
jweislak@xbs-toledo.com
419-248-7336

Last name, First name; Social Security; Date

=A1&", "&B1&"; "&C1&"; "&D1

Give a double click on the fill handle of the formula cell.

Just curious: Why would you reduce all this into a compound field in a database?

Aladin
 
Upvote 0
Alan,

The company that I work for wants it that way I prefer it separated they do not.

Thank you for your help I will try this I was having trouble with the number factors.

Jennie
 
Upvote 0
On 2002-05-10 07:50, jweislak@xbs-toledo.com wrote:
Alan,

The company that I work for wants it that way I prefer it separated they do not.

Thank you for your help I will try this I was having trouble with the number factors.

Jennie

You mean the date thing I guess. Darn it. Make that concat formula:

=A1&", "&B1&"; "&C1&"; "&TEXT(D1,"mm/dd/yy")

Adjust to suit the last part.

Cheers.

Aladin
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,378
Members
448,955
Latest member
BatCoder

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top