How to do this in Excel?

Soldato
Joined
18 Oct 2002
Posts
7,052
Location
Kuala Lumpur, Malaysia
I have a list of products, and I need to add the manufacturer name into the description cell , I can do this manually ie. double click beginning of name, then paste manufacturer name (will do them one by one) but is there any other way of doing this?

Have around 3000 products to do , and I'll get bored quickly if I do this manually :p

Thanks in advance :)
 
Post up the whole file somewhere i.e. savefile.com, or perhaps just a screenshot so that we can have a see how it is formatted and advise.

Depending on how many different manufacturers there are I'm guessing that it could either be done with an "IF" function, or a "LEFT"/"RIGHT" function. It might however not even require functions, just find & replace or something else.

Really do need to see all or part of the list.
 
Last edited:
How many difference manufacturers are there?
One possibility is to have a second column where you paste the manufacturers name (which can be done in big blocks), and then a third column which uses CONCATENATE to combine them. Then just cut/paste the 3rd column as "value only".

A1=manufacturer
B1=product description
C1=CONCATENATE(A1," ",B1) the "" just adds a space between them

then copy-paste column C to D "as values only"
 
spreadseet.jpg


That's what the spreadsheet looks like, all those items are from the same manufacturer, they're all in blocks.

Cogwork, thanks I'll try your suggestion :)
 
How many difference manufacturers are there?
One possibility is to have a second column where you paste the manufacturers name (which can be done in big blocks), and then a third column which uses CONCATENATE to combine them. Then just cut/paste the 3rd column as "value only".

A1=manufacturer
B1=product description
C1=CONCATENATE(A1," ",B1) the "" just adds a space between them

then copy-paste column C to D "as values only"


The shorthand version would be

=A1 & " " & B1
 
Back
Top Bottom