Concatenate

R

RChicken

I'm doing a concatenate of two cells together, but when it combines th
data it combines it. i want to seperate the data with a dash and
space, how can i do this without going through the 12,000 lines in th
excel file?

Here is an example:
This is what it looks like now
CS100FPFont By-Pass kit W/ 4-Bolt flange Chevy Duramax 2001-2005

I want it to look like this
CS100FP - Font By-Pass kit W/ 4-Bolt flange Chevy Duramax 2001-200
 
S

SamuelT

Hi,

If your text is in A1 and B1. Enter the following in the cell that you
are concatenating:

=A1 & " - " & B1

HTH,

SamuelT
 
Top