ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Selecting Range (https://www.excelbanter.com/excel-programming/296959-selecting-range.html)

dan

Selecting Range
 
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

JE McGimpsey

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


Bob Phillips[_6_]

Selecting Range
 
Hey Dan,

Here is one way

selection.end(xldown).columns("A:F").select

although selecting is messy

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Dan" wrote in message
...
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




dan

Selecting Range
 
Your solution worked just fine!
Thank you,
Dan
-----Original Message-----
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

.



All times are GMT +1. The time now is 09:11 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com