Adding additional information to a cell

abbywarn

New Member
Joined
Aug 23, 2007
Messages
2
I have a populated spreadsheet and i want to add additional information infront of the current information to each cell. I.e each cell has a variety of colours...bronze, chrome, silver etc and i need to add the phrase 'Colour:' before each entry.
I would normally do find & replace to add this information however almost each cell contains different information so it would takes ages. Is there any way of doing a generic find & replace (by using *, ?, "" for example) to put the information before every single cell in the selection?
Would aprpeciate any help you can give me.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Are you adding the same prefix to each cell ?

If yes, try this. assuming your text is in Col A
Code:
=A1&"Colour "
and copy down.

Once you've done this, you can use Copy, Paste Special, Values, to overwrite your original data with the result from this formula.
 
Upvote 0
You can use a formula like this in a spare column and then copy...paste special...values:

="Colour: "&A1

Dom
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,717
Members
448,985
Latest member
chocbudda

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