> One way (with the data in B1:E2):
>
[quoted text clipped - 8 lines]
> And J.E. McGimpsey has some notes at:
> http://mcgimpsey.com/excel/formulae/doubleneg.html
Thanks. Now what if I wanted to use the TINV operation in the comparison?
For example, I want to compare one row of numbers with a TINV computation
based on another row of numbers. I type in the following:
=SUMPRODUCT(--((worksheet1!R72C2:R72C199)>TINV(2*Alpha,(worksheet1!R14C2:R14
C199) *2 - 2)))
...and it doesn't work. I get #NUM!. I assume it's because the TINV
command isn't returning an array of numbers? [Alpha is defined already as a
"name", worksheet1 contains the data, row 72 contains calculated t-values,
and row 14 contains number of trials]
Dave Peterson - 25 Jun 2007 01:42 GMT
I put a small amount of test data in a worksheet and used a simplified version
of your formula (in A1 reference style) and it worked fine for me:
=SUMPRODUCT(--((B3:E3)>TINV(0.5,B2:E2)*2-2))
I'd check your input once more.
Maybe even simplify the formula with smaller amount of data and see what
happens.
> > One way (with the data in B1:E2):
> >
[quoted text clipped - 22 lines]
> "name", worksheet1 contains the data, row 72 contains calculated t-values,
> and row 14 contains number of trials]

Signature
Dave Peterson
MZ - 25 Jun 2007 01:52 GMT
> I put a small amount of test data in a worksheet and used a simplified version
> of your formula (in A1 reference style) and it worked fine for me:
[quoted text clipped - 5 lines]
> Maybe even simplify the formula with smaller amount of data and see what
> happens.
Works! Problem was that one of the columns in the middle of the data was
empty. Thanks for your help.