Need to append a character to cell data

M

Mark

Hello everyone; I need to append a character to the beginning of a
string in Excel. The problem is, this needs to happen automatically,
so the page acts like a template. Basically, I would like to put an
apostrophe at the beginning of a string in a range of cells, so when a
user copies a list and pastes it into a column, each entry has an
apostrophe added to the beginning. This would make the following
list:

000101
000102
000103

look like this in the cell:

'000101
'000102
'000103


Any information/assistance would be appreciated. If possible, I would
like to accomplish this without macros or manual input from the user
(other than in initial copy/paste). Thank you in advance for your
help!
 
Z

Zaidy036

Hello everyone; I need to append a character to the beginning of a
string in Excel. The problem is, this needs to happen automatically,
so the page acts like a template. Basically, I would like to put an
apostrophe at the beginning of a string in a range of cells, so when a
user copies a list and pastes it into a column, each entry has an
apostrophe added to the beginning. This would make the following
list:

000101
000102
000103

look like this in the cell:

'000101
'000102
'000103


Any information/assistance would be appreciated. If possible, I would
like to accomplish this without macros or manual input from the user
(other than in initial copy/paste). Thank you in advance for your
help!

Assumed that the data is being entered as a number formatted using "000000"

- Use the following in the adjacent column to the entries:
=CONCATENATE("'",LEFT("000000",6-LEN(A1)),A1)
 

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

Similar Threads

XML Source 7
Append character to cell 2
Macro to append 4
Append text to each cell 4
Moving a bunch of data 1
Removing a character 4
Remove Final Character from Cell. 3
Insert a Tab character inside cell 18

Top