Finding duplicates
Try a COUNTIF() in another column to tell you how many times the column A
value appears in the list. Assume your list goes from rows 1 through 2496,
then put this in an unused column in row 1 and fill down:
=COUNTIF(A$1:A$2496,A1)
The result will be 1 for those products with the old number entered only
once in the list, it will be some larger number for those that appear more
than once.
"NeedToKnow" wrote:
I have tried to read old questions but couldn't find answer.
I have a file where column A is old product number, B old name, C new
product number and D new name. Most products has 1 old and 1 new, but some
products might have f.ex. 3 new numbers. There are about 1650 rows.
I have done search to find new number based on old number like this:
=VLOOKUP(C5;'files'!A6:E1646;4;FALSE)
This works if there is only 1 new code, but how do I find if there is more?
old nr old name new nr new name
Column A Column B Column C Column D
1234 prod1 1546 prod01
2456 prod2 1556 prod02
2456 prod2 1559 prod02b
2456 prod2 1561 prod02c
|