G
Guest
Hi,
i want to know if it access has statistical functions like (regression,etc...)
tnk u
i want to know if it access has statistical functions like (regression,etc...)
tnk u
Martin said:Actually, this is a more useful form as it makes a usable function in Access
(i.e. you could use it in a query or form/report):
Function myChi(ref1, ref2)
Dim myXL As New Excel.Application
myChi = myXL.WorksheetFunction.ChiDist(ref1, ref2)
Set myXL = Nothing
End Function