RangeMissingCount - script and chart function
Syntax:
RangeMissingCount(first_expr[, Expression])
Return data type: integer
Arguments:
The argument of this function may contain inter-record functions which in themselves return a list of values.
Argument | Description |
---|---|
|
The expression or field containing the data to be counted. |
|
Optional expressions or fields containing the range of data to be counted. |
Examples and results:
Examples | Results |
---|---|
RangeMissingCount (1,2,4) |
Returns 0 |
RangeMissingCount (5,'abc') | Returns 1 |
RangeMissingCount (null( )) |
Returns 1 |
Example with expression:
RangeMissingCount (Above(MinString(MyField),0,3))
Returns the number of non-numeric values in the three results of the MinString(MyField) function evaluated on the current row and two rows above the current row.
MyField | RangeMissingCount(Above(MinString(MyField),0,3)) | Explanation |
---|---|---|
10 | 2 | Returns 2 because there are no rows above this row so 2 of the 3 values are missing. |
|
2 | Returns 2 because there is only 1 row above the current row and the current row is non-numeric (' |
8 | 1 | Returns 1 because 1 of the 3 rows includes a non-numeric (' |
|
2 | Returns 2 because 2 of the 3 rows include non-numeric values (' |
|
2 | Returns 2 because 2 of the 3 rows include non-numeric values (' |
9 | 2 | Returns 2 because 2 of the 3 rows include non-numeric values (' |
Data used in examples:
RangeTab:
LOAD * INLINE [
MyField
10
'abc'
8
'def'
'xyz'
9
] ;