The CoefficientOfVariation property returns the coefficient of variation of the data values in the column from which the statistics were calculated. Returns a variant. This is a read-only property.
Syntax
object.CoefficientOfVariation( Col )
Parameter |
Type |
Description |
Col |
Long |
optional, default=1 |
Remarks
1 is equal to column A.
Example
This example demonstrates how to return the coefficient of variation of data values in column C.
Debug.Print "Sample Coefficient of Variation "; Stats.CoefficientOfVariation(3)
Used by: WksStatistics object