Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The code
Range("A2:A34").Select will select A2 to a34 What code is required to select A1 to the last entry in Col A Thanks -- Norton Professional 2004 says this email is clean...believe it |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
With Worksheets(1): Range(.Cells(1, 1), .Cells(Rows.Count,
1).End(xlUp)).Select: End With "PCOR" wrote in message . cable.rogers.com... The code Range("A2:A34").Select will select A2 to a34 What code is required to select A1 to the last entry in Col A Thanks -- Norton Professional 2004 says this email is clean...believe it |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Many Thanks
Have a great 2004 "Rob van Gelder" wrote in message ... With Worksheets(1): Range(.Cells(1, 1), .Cells(Rows.Count, 1).End(xlUp)).Select: End With "PCOR" wrote in message . cable.rogers.com... The code Range("A2:A34").Select will select A2 to a34 What code is required to select A1 to the last entry in Col A Thanks -- Norton Professional 2004 says this email is clean...believe it |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
PCOR
Sub selectrange2() ''from top of column A to bottom of used range in column A including blanks Range("A1", Cells(Rows.Count, 1).End(xlUp)).Select End Sub Sub selectrange1() ''from activecell in any column to bottom of used range in column including ''blanks Range(ActiveCell, Cells(Rows.Count, ActiveCell.Column).End(xlUp)).Select End Sub Sub SelectDown() ''to first blank row in active column Range(ActiveCell, ActiveCell.End(xlDown)).Select End Sub Gord Dibben Excel MVP On Sat, 27 Dec 2003 18:57:30 GMT, "PCOR" wrote: The code Range("A2:A34").Select will select A2 to a34 What code is required to select A1 to the last entry in Col A Thanks |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Many Thanks
Have a great 2004 <Gord Dibben wrote in message ... PCOR Sub selectrange2() ''from top of column A to bottom of used range in column A including blanks Range("A1", Cells(Rows.Count, 1).End(xlUp)).Select End Sub Sub selectrange1() ''from activecell in any column to bottom of used range in column including ''blanks Range(ActiveCell, Cells(Rows.Count, ActiveCell.Column).End(xlUp)).Select End Sub Sub SelectDown() ''to first blank row in active column Range(ActiveCell, ActiveCell.End(xlDown)).Select End Sub Gord Dibben Excel MVP On Sat, 27 Dec 2003 18:57:30 GMT, "PCOR" wrote: The code Range("A2:A34").Select will select A2 to a34 What code is required to select A1 to the last entry in Col A Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Selecting range in list of range names depending on a cell informa | Excel Discussion (Misc queries) | |||
Help with selecting a range... | Excel Programming | |||
Selecting A Range | Excel Programming | |||
Selecting A Range | Excel Programming |