M
Michael Levin
I used to have this humble function defined in my Excel sheets; it doesn't
work now that I've upgraded to Excel 2008 on my Mac:
Function strict_chi(a, b, c, d)
N = a + b + c + d
chi = (N * pow(Abs(a * d - b * c) - N / 2#, 2#) / ((a + b) * (c + d) * (a +
c) * (b + d)))
strict_chi = chi
End Function
how do I define this so that all my old Excel sheets that reference it
work? Is that possible?
Mike
work now that I've upgraded to Excel 2008 on my Mac:
Function strict_chi(a, b, c, d)
N = a + b + c + d
chi = (N * pow(Abs(a * d - b * c) - N / 2#, 2#) / ((a + b) * (c + d) * (a +
c) * (b + d)))
strict_chi = chi
End Function
how do I define this so that all my old Excel sheets that reference it
work? Is that possible?
Mike