I mean I have 530 rows and 15+ columns of the
=INDEX(Vlookups($C1,$A$1:$B$10,2),COLUMN(A1)) formula and each time it
calulates it takes forever. So, I am trying to reduce the number of columns
by taking out duplicate items. For instance, I have one order number with
several different features, but some of those features may be duplicated on
each order. So, your first two formulas helped me put the order number once
in a column and then each feature in columns following. So the end result
has an order number and all of its features on the same row. But since some
of those features are duplicates, the output may read:
C D E F
2056232 BLACK BLACK RED
Well, I wan to keep the red, but I only want one black. Even though the
feature may actually appear more than once on the order, I only need to know
if it is on there at all. So, if I can get rid of the duplicates, I should
be able to cut down on the number of calcutaions it has to make.