Auto copy single values to another cell

  • Thread starter Thread starter DDavid
  • Start date Start date
D

DDavid

Hi to all,

I will thanks if some help can be provided. I have a list of items
that contains repeated items in column A (each week i start a new file
with the empty list). I would like in column C to appear automaticaly
only one time each item I put in the column A.

thanks for the help you can give.
 
Data > Filter > AdvancedFilter, follow menu and select "Unique Records only"

Vaya con Dios,
Chuck, CABGx3
 
=IF(COUNTIF(A$1:A1,A1)=1,A1,""), copied as far as you like down column C,
will copy a value from A to C only if it is the first occurrence of that
value in column A.
 
That's cool............then a little Copy > PasteSpecial > Values, and a sort
of the column will get the list all up in one neat group.
This can of course then be set to a macro if desired.


Vaya con Dios,
Chuck, CABGx3
 
Back
Top