Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a macro to sort unique values from one worksheet to the next. My
macro retruns the formula from the range of cells vs. the values which I need. What would I need to change in the macro below to list the unique values instead of the formulas? Sub unique() ' ' unique Macro ' Macro recorded 2/17/2006 by andersma ' ' Sheets("Conversion").Range("G1:G3000").AdvancedFil ter Action:=xlFilterCopy, _ CopyToRange:=Range("C1"), unique:=True End Sub |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Marcus,
Try it after adding a column title/heading in G1. Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "MarcusA" wrote in message... I have a macro to sort unique values from one worksheet to the next. My macro retruns the formula from the range of cells vs. the values which I need. What would I need to change in the macro below to list the unique values instead of the formulas? Sub unique() ' unique Macro ' Macro recorded 2/17/2006 by andersma' Sheets("Conversion").Range("G1:G3000").AdvancedFil ter Action:=xlFilterCopy, CopyToRange:=Range("C1"), unique:=True End Sub |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you!!! it worked.
"Jim Cone" wrote: Marcus, Try it after adding a column title/heading in G1. Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "MarcusA" wrote in message... I have a macro to sort unique values from one worksheet to the next. My macro retruns the formula from the range of cells vs. the values which I need. What would I need to change in the macro below to list the unique values instead of the formulas? Sub unique() ' unique Macro ' Macro recorded 2/17/2006 by andersma' Sheets("Conversion").Range("G1:G3000").AdvancedFil ter Action:=xlFilterCopy, CopyToRange:=Range("C1"), unique:=True End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Returning an array of unique values? | Excel Worksheet Functions | |||
Formula for Returning values in another spreadsheet | Excel Worksheet Functions | |||
Count unique values and create list based on these values | Excel Worksheet Functions | |||
create list of unique values from a column with repeated values? | Excel Worksheet Functions | |||
How do I search thr'o column and put unique values in differnt sheet and sum corresponding values in | Excel Programming |