Hi Tom! you see, I cannot do that. My database changes so I don't know where
will i have empty cells. Do you know how can I assign that correlation value
to a variable (that doesn't require a cell)?
I don't know what i and j contain or what inSerie is. These may be defined
names.
But if you look at the example in help for the correl worksheet function you
see the formula
=CORREL(A2:A6,B2:B6)
to do that in VBA
Dim correlation as double
correlation = application.Correl(Range("A2:A6"), Range("B2:B6"))
Just to demonstrate from the immediate window in the VBE:
correlation = application.Correl(Range("A2:A6"), Range("B2:B6"))
? correlation
0.997054485501581
A2:A6 and B2:B2 contain the numbers shown in the help example.
if Inserie1 is a named range and inserie2 is a named range then it would be
Dim i as Long, j as Long, correlation as double
i = 1
j = 1
correlation = application.Correl(Range("inSerie" & i), Range("inSerie" & j))

Signature
Regards,
Tom Ogilvy
> Hi Tom! you see, I cannot do that. My database changes so I don't know where
> will i have empty cells. Do you know how can I assign that correlation value
[quoted text clipped - 11 lines]
> > >
> > > but, if i replace "correlation" by range("a1"), then it works fine.
Paco - 20 Sep 2007 21:14 GMT
This is great!!! thanks a lot Tom!!! I've been trying for days!!!
> I don't know what i and j contain or what inSerie is. These may be defined
> names.
[quoted text clipped - 39 lines]
> > > >
> > > > but, if i replace "correlation" by range("a1"), then it works fine.