Thread: A1:B(xlDown)?
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Simon[_2_] Simon[_2_] is offline
external usenet poster
 
Posts: 89
Default A1:B(xlDown)?

On Jul 28, 11:43*am, JMay wrote:
Needed to use
Range("A1").Resize(Range("B1").End(xlDown).Row, 2).Select



"Bob Phillips" wrote:
Range("A1").Resize(Range("A1").End(xlDown).Row).Se lect


--
HTH


Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)


"Simon" wrote in message
...
Hi,


I use


Range("A1").Select
Range(Selection, Selection.End(xlDown)).Select


for column A, but how do I grab from A1 to the last record in row B in
one swoop?- Hide quoted text -


- Show quoted text -


Yes, thansk the ,2) was requred, specifing the number of rows required.