Jacob,
It does work. I had to se a new cntr variable as "c" contained strings. It
works now thank you
"Jacob Skaria" wrote:
> <<I tried to use the variable i rom the loop ie, Range("A(i):I(i)"),
> obviously that did not work
>
> That is a syntax issue...Try the below
>
> For i = 1 To 10
> Range("A" & i & ":I" & i).Select
> Next
>
> If this post helps click Yes
> ---------------
> Jacob Skaria
>
>
> "thomas donino" wrote:
>
> > I have a macro I am working on which creates a report based on the Investors
> > data in a main sheet. The macro works fine on the first name, it copies and
> > pastes all the headers and graphs and then a row of investor info from the
> > main sheet. The problem lies in that the loop thru the investor names is
> > always using the same investor's data from that row (duh, that row is
> > hardcoded ). How do i get the row data to increment down using offset when
> > you are offsetting a whole row range, ie a3:i3. I tried to use the variable i
> > from the loop ie, Range("A(i):I(i)"), obviously that did not work.
|