I need to add 3 letters into each cell at the begn./Cell has #'s

S

Sharon R

I have a column of #'s, I need to add 3 letters in each cell before the #'s.
Is there a formula for this, so I wouldn't have to retype all the #'s?
 
C

Chip Pearson

You can use a formula like the following in another, blank, column:

="XYZ"&A1

where "XYZ" are the letter you want to prepend to the cell value. Copy this
formula down as far as you need to go. If want to permanently change
original value, you can copy the formula range and Paste Special, Value,
from the Edit menu to paste the values on top of the original data. Then you
can delete formula column.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)
 
D

Dave F

Create a helper column with the following formula (assumes your numbers are
in column A):

=CONCATENATE("xxx",A1) and fill down to the end of your range. Then copy
the helper column, paste special, values, on column A, and delete the helper
column.

Dave
 
S

Sharon R

Worked Perfect!!! Thank You!!!!!

Dave F said:
Create a helper column with the following formula (assumes your numbers are
in column A):

=CONCATENATE("xxx",A1) and fill down to the end of your range. Then copy
the helper column, paste special, values, on column A, and delete the helper
column.

Dave
 
S

Sharon R

Perfect Thank You!!!!!

Chip Pearson said:
You can use a formula like the following in another, blank, column:

="XYZ"&A1

where "XYZ" are the letter you want to prepend to the cell value. Copy this
formula down as far as you need to go. If want to permanently change
original value, you can copy the formula range and Paste Special, Value,
from the Edit menu to paste the values on top of the original data. Then you
can delete formula column.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)
 
Top