View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Bob Umlas Bob Umlas is offline
external usenet poster
 
Posts: 301
Default how do I select cells in column A thru F in the active row?

A bit easier/shorter:
Cells(ActiveCell.Row,1).Resize(1,6).Select
Bob Umlas
Excel MVP


"Rowan" wrote in message
...
One way:

Range(Cells(ActiveCell.Row, 1), Cells(ActiveCell.Row, 6)).Select

Regards
Rowan

"jonco" wrote:

What I'm tring to do is select cells in column A thru F in whatever row
is
active no matter what cell in what column is active.

I know it's simple but I forgot how to do it. Thanks
Jon