which range staement is preferable?
thanks, bob, i usually use the column letter when i can, too, but just stuck
something together about how to qualify the ranges. it's easier for me to debug.
--
Gary
"Bob Phillips" wrote in message
...
Gary,
I would use
With ws
.Range(.cells(2,"A"),.cells(3,"A")).Select
End With
I prefer using the column letter if I know it, obviously if it is being
dynamically set, the number works better.
--
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
"Gary Keramidas" <GKeramidasATmsn.com wrote in message
...
may have asked this before, but which of these is preferable? (disregarding
the select<g)
ws.range(ws.cells(2,1),ws.cells(3,1)).select
ws.range(cells(2,1),cells(3,1)).select
range(ws.cells(2,1),ws.cells(3,1)).select
--
Gary
|