Go to the source code of this file.
|  | 
| const short | NONE = 0 | 
|  | nothing is calculated. 
 | 
| const short | AUTO = 1 | 
|  | function is determined automatically. 
 | 
| const short | SUM = 2 | 
|  | sum of all numerical values is calculated. 
 | 
| const short | COUNT = 3 | 
|  | all values, including non-numerical values, are counted. 
 | 
| const short | AVERAGE = 4 | 
|  | average of all numerical values is calculated. 
 | 
| const short | MAX = 5 | 
|  | maximum value of all numerical values is calculated. 
 | 
| const short | MIN = 6 | 
|  | minimum value of all numerical values is calculated. 
 | 
| const short | PRODUCT = 7 | 
|  | product of all numerical values is calculated. 
 | 
| const short | COUNTNUMS = 8 | 
|  | numerical values are counted. 
 | 
| const short | STDEV = 9 | 
|  | standard deviation is calculated based on a sample. 
 | 
| const short | STDEVP = 10 | 
|  | standard deviation is calculated based on the entire population. 
 | 
| const short | VAR = 11 | 
|  | variance is calculated based on a sample. 
 | 
| const short | VARP = 12 | 
|  | variance is calculated based on the entire population. 
 | 
| const short | MEDIAN = 13 | 
|  | median of all numerical values is calculated. 
 |