PDA

View Full Version : Solved: Range Expression



snoopies
05-02-2006, 03:10 AM
Hi,

Can anyone tell me the alternative way to express the following range?

Range("A3:A65536")

p.s I want to use "1" instead of "A"

Thanks!!

Sir Newbie
05-02-2006, 03:50 AM
Hi snoopies

Does this help you?

I'm working on the assumption that you want to use an integer rather than a letter to reach your objective.


With Worksheets(1)
.Range(.Cells(3, 1), .Cells(65536, 1)).Borders.LineStyle = xlThick
End With


You might want to keep in mind that I'm a newb :)

Good luck.

Chow for now!

Bob Phillips
05-02-2006, 05:28 AM
Range(Cells(3, 1),Cells(Rows.Count, 1))

snoopies
05-02-2006, 06:08 AM
Hi both,

Thanks a lot!! :)