M
MarcusA
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").AdvancedFilter
Action:=xlFilterCopy, _
CopyToRange:=Range("C1"), unique:=True
End Sub
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").AdvancedFilter
Action:=xlFilterCopy, _
CopyToRange:=Range("C1"), unique:=True
End Sub