ValStdDev ( ValueList ; ArithMeanValue )
Gives the standard deviation of a value List of numbers
Average rating: 4.4 (20 votes) Log in to vote
Bill Thurmes - Show more from this author
MDCA http://www.miyotadca.com |
ValStdDev ( "5¶a¶24¶3¶6" ; ValueMean ( "5¶a¶24¶3¶6" ) )
= 8.45221... [GetAsNumber sees 'a' as 0]
Function definition: (Copy & paste into FileMaker's Edit Custom Function window)
The native StDev function in FileMaker only works on fields, but it is often more efficient to work with value lists and do all calculations in memory. This is particularly true when you use ESQL, where the answer is returned as a value list. The ValStdDev function gives the standard deviation of a set of numerical values in a ¶-delimited value list. This uses the square root of (the sum of squares divided by N); for many uses, ValStdDevS (which uses N-1) is more appropriate. One caveat: if a non-numerical value is used, it is evaluated as 0.
Comments
Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.