Answer the question
In order to leave comments, you need to log in
Price with duplicates, how to remove them?
Good afternoon! They threw off the price, there, for example, 1 product with the same product code can be repeated 10-30 times. But there are differences: the fullness of the columns. For example, line 1 contains a photo, line 2 contains a video, line 3 contains specifications, and all 3 lines have the same product code. How can I remove duplicates and fill in all columns in one product code? For example, so that on line 1 there were both photos and videos and characteristics, on line 2 there was already another product with a different code and all columns were also filled in..
Answer the question
In order to leave comments, you need to log in
1) Collect all unique keys.
=unique(столбец_с_ключами)
2) For each key - look for characteristics.
=filter(столбец_с_характеристикой;столбец_с_ключами=текущий_ключ)
=join("
";unique(filter(столбец_с_характеристикой;столбец_с_ключами=текущий_ключ)))
here, apart from writing some kind of script that will collect everything as it should, you can’t think of anything else ...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question