I'm trying to calculate (in VBA Excel) the Average and StDev of an array with more than 65536 elements. Something like this:
Mitja = worksheetfunction.Average(array()) DesvTip = worksheetfunction.StDev(array())
While the dimension of the array is smaller than 65536 there is no problem but, when it's bigger it gives me an error!
I know that this VBA functions can't work with more than 65536 data so, how can I obtain this parameters in VBA?
Apreciate your comments. Thanks a lot! :))