D
D
Dima2016-12-21 09:10:34
excel
Dima, 2016-12-21 09:10:34

How to generate product descriptions?

I fill in quite a lot of goods, I don’t plan a unique description of each yet.
There is a desire to generate a description for each product from the characteristics.
Example:
(Product type) (Article) (Manufacturer) is made in style (Style), intended for use in (destination), etc.
Do you have any ideas how to organize the process?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
shushpanio, 2016-12-21
@v2254303

For products, create an Excel table with fields (example, column headings):
A - (Type of product)
B - (Article)
C - (Manufacturer)
D - (Style)
E - (destination)
F - (description)
In the column description formula (example for cell F2)
=A2&" "&B2&" "&C2&" is in the style of "&D2&", intended for use in "&E2 and so on. following logic.
A similar option through the CONCATENATE formula:
=CONCATENATE(A2;" ";B2;" ";C2;" is made in the style of ";D2;", intended for use in ";E2) , etc. Don't forget that both options concatenate the value character by character, After stretching the formula, get a column with a description.
And then drag from the column wherever you like.

I
Ivan Vishnevsky, 2017-05-14
@tosterino

https://codepen.io/forgetable/pen/ybEyXr

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question