Thread: Selecting Range
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default Selecting Range

One way:

Selection.Resize(1, 6).Select

or, all in one step:

Selection.End(xlDown).Resize(1, 6).Select


In article ,
"Dan" wrote:

Hello,

I have data in columns A through F and I would like select
the last row of data (A:F). I get to the last row by:

Selection.End(xlDown).Select

How do I then Select colums A:F for that row?

Thank you in advance,
Dan