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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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)
 
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
 
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
 
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)
 

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

Back
Top