Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Whats the macro code to select all cells except row 1????
|
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
with activesheet
.rows("2:" & .rows.count).select end with is one way. Meltad wrote: Whats the macro code to select all cells except row 1???? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way.
Maybe this: Range("A2:IV65536").Select Paul "Meltad" wrote in message ... Whats the macro code to select all cells except row 1???? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Range("A2",Cells(Range("A2").End(xlDown).Row,Range ("A2").End(xlToRight).Column).Select
HTH -- Charles Chickering "A good example is twice the value of good advice." "Meltad" wrote: Whats the macro code to select all cells except row 1???? |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You have already got so many options. Why not one more?
Sheet1.Cells.Resize(Sheet1.Rows.Count-1).Offset(1).Select "Meltad" wrote: Whats the macro code to select all cells except row 1???? |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
THANKS ALL!!!
"Dave Peterson" wrote: with activesheet .rows("2:" & .rows.count).select end with is one way. Meltad wrote: Whats the macro code to select all cells except row 1???? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I select a range of cells for header? | Excel Programming | |||
I can't select/edit objects. It says [Group] on the header bar. | Excel Discussion (Misc queries) | |||
Select max value in a row and pick the column header | Excel Discussion (Misc queries) | |||
Select header if formula | Excel Worksheet Functions | |||
Disabling Row Select from Header | Excel Programming |