InBetweenNumeric method: FilterValues class

Syntax

InBetweenNumeric(&StartValue,&EndValue)

Description

Use the InBetweenNumeric method to pass the In Between operator for numeric filter values to a dashboard.

Parameters

Parameter Description

&StartValue

Specifies the beginning numeric value.

&EndValue

Specifies the ending numeric value.

Returns

A FilterValues object.

Example

Local array of PTSF_INSIGHTS:FilterValues &filterValArray;
Local PTSF_INSIGHTS:FilterValues &passFilterValues;

&passFilterValues = create PTSF_INSIGHTS:FilterValues();
&passFilterValues.Key("Fiscal Year", "", True).InBetweenNumeric(2000, 2004);
&filterValArray.Push(&passFilterValues);