RangeNumericCount - script and chart function
Syntax:
RangeNumericCount(first_expr[, Expression])
Return data type: integer
Arguments:
The arguments 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 measured. |
|
Optional expressions or fields containing the range of data to be measured. |
Examples and results:
Examples | Results |
---|---|
RangeNumericCount (1,2,4) |
Returns 3 |
RangeNumericCount (5,'abc') | Returns 1 |
RangeNumericCount (null( )) |
Returns 0 |
Example with expression:
RangeNumericCount (Above(MaxString(MyField),0,3))
Returns the number of numeric values in the three results of the MaxString(MyField) function evaluated on the current row and two rows above the current row.
Tip: Disable sorting of MyField to ensure that example works as expected.
MyField | RangeNumericCount(Above(MaxString(MyField),0,3)) |
---|---|
10 | 1 |
|
1 |
8 | 2 |
|
1 |
|
1 |
9 | 1 |
Data used in examples:
RangeTab:
LOAD * INLINE [
MyField
10
'abc'
8
def
xyz
9
] ;