View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
Eric[_35_] Eric[_35_] is offline
external usenet poster
 
Posts: 26
Default Last cell (not blank)

That works too. Thanks.

Eric


"Don Guillett" wrote in message
...
Range(Range("a1"), Range("a1").End(xlDown)).Select


--
Don Guillett
SalesAid Software

"Eric" wrote in message
...
Gary,

This goes to the last cell non blank. How do I "select" from the current
cell down to the last cell? The SHIFT part in not translated in
Range("a1").End(xlDown).Select.

Thank you again.

Eric

"Gary Keramidas" <GKeramidasATmsn.com wrote in message
...
basically the same way:

Range("a1").End(xlDown).Select

although you rarely need to use select, but this illustrates what you

want.

--


Gary


"Eric" wrote in message
...
Hello,

How do you translate in VBA the selection from the current cell down

to
the
last one (not blank).
If I had to do the operation manually in a workbook, I would select

the
first cell, then hold SHIFT, press END then ARROW DOWN.

Thank you.

Eric