Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Can someone help advise the macro or code to pull out unique items from an array. Don't want to sort and manually pick them out. Eg. Apple Banana Apple Orange Orange Banana Result required : Apple, Orange and Banana |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Dataadvanced Filter
Leave criteria blank Check "Unique" Please forgive approximate translation from french Excel HTH -- AP "Michael" a écrit dans le message de ... Can someone help advise the macro or code to pull out unique items from an array. Don't want to sort and manually pick them out. Eg. Apple Banana Apple Orange Orange Banana Result required : Apple, Orange and Banana |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Merci Petus,
Your advise will work but I was actually looking more for VB codes as i have a number of other task to carry out after obtaining the unique Items. Any idea? "Ardus Petus" wrote: Dataadvanced Filter Leave criteria blank Check "Unique" Please forgive approximate translation from french Excel HTH -- AP "Michael" a écrit dans le message de ... Can someone help advise the macro or code to pull out unique items from an array. Don't want to sort and manually pick them out. Eg. Apple Banana Apple Orange Orange Banana Result required : Apple, Orange and Banana |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming your original data is in A1:A10
and you want unique values in column C: Sub Unique() Range("A1:A10").AdvancedFilter _ Action:=xlFilterCopy, _ CopyToRange:=Range("C1"), _ Unique:=True End Sub HTH -- AP "Michael" a écrit dans le message de ... Merci Petus, Your advise will work but I was actually looking more for VB codes as i have a number of other task to carry out after obtaining the unique Items. Any idea? "Ardus Petus" wrote: Dataadvanced Filter Leave criteria blank Check "Unique" Please forgive approximate translation from french Excel HTH -- AP "Michael" a écrit dans le message de ... Can someone help advise the macro or code to pull out unique items from an array. Don't want to sort and manually pick them out. Eg. Apple Banana Apple Orange Orange Banana Result required : Apple, Orange and Banana |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank You
"Ardus Petus" wrote: Assuming your original data is in A1:A10 and you want unique values in column C: Sub Unique() Range("A1:A10").AdvancedFilter _ Action:=xlFilterCopy, _ CopyToRange:=Range("C1"), _ Unique:=True End Sub HTH -- AP "Michael" a écrit dans le message de ... Merci Petus, Your advise will work but I was actually looking more for VB codes as i have a number of other task to carry out after obtaining the unique Items. Any idea? "Ardus Petus" wrote: Dataadvanced Filter Leave criteria blank Check "Unique" Please forgive approximate translation from french Excel HTH -- AP "Michael" a écrit dans le message de ... Can someone help advise the macro or code to pull out unique items from an array. Don't want to sort and manually pick them out. Eg. Apple Banana Apple Orange Orange Banana Result required : Apple, Orange and Banana |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
retrieve unique items with 2 criteria | Excel Worksheet Functions | |||
create an array with unique items IN MEMORY | Excel Worksheet Functions | |||
counting unique items | Excel Discussion (Misc queries) | |||
Finding unique items in data field for pivot tables | Excel Discussion (Misc queries) | |||
Count of unique items meeting condition | Excel Worksheet Functions |