View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Eloy Eloy is offline
external usenet poster
 
Posts: 3
Default Excel VBA-How do I increment columns in VBA?

try this:

Eg. For i=1 To 4
Range(cells(1,i),cells(1,i)).Select
Next i

cheers
e