Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
How do I sort a named range? Do I have to use Application.goto reference:="Name of Range" Selection.sort key1:=Range("A1") ...... Or is there a shoreter version of it? Thanks Andi |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
with worksheets("sheet99").range("NameOfRange")
.sort key1:=.columns(1), ... end with would be one way. Andibevan wrote: Hi, How do I sort a named range? Do I have to use Application.goto reference:="Name of Range" Selection.sort key1:=Range("A1") ...... Or is there a shoreter version of it? Thanks Andi -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks
"Dave Peterson" wrote in message ... with worksheets("sheet99").range("NameOfRange") .sort key1:=.columns(1), ... end with would be one way. Andibevan wrote: Hi, How do I sort a named range? Do I have to use Application.goto reference:="Name of Range" Selection.sort key1:=Range("A1") ...... Or is there a shoreter version of it? Thanks Andi -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Array as a "named range" - formula ok in cells, but error as "named range" | Excel Discussion (Misc queries) | |||
inserting a named range into new cells based on a named cell | Excel Discussion (Misc queries) | |||
If any cell in named range = 8 then shade named range | Excel Programming | |||
sorting named range | Excel Programming | |||
Sorting lists of Named Ranges | Excel Programming |