View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
L. Howard Kittle L. Howard Kittle is offline
external usenet poster
 
Posts: 698
Default select columns by variable

Hi Jack,

Sub ColsandRows()
Dim i As Integer
i = Range("A1").Value
Range("B2").Resize(5, i).Select
End Sub

HTH
Regards,
Howard

"Jack" wrote in message
...
Is there something in vba that will allow me to select a certain amount of
columns by variable?

I have a sum that is formulated on sheet1. I need to figure out how to
select that many columns starting at b1 on sheet 2. If it matters I need
to
have 5 rows by ever how many columns.

thanks so much for your help!