sisense.com
✅ You are viewing documentation for the latest version of Compose SDK.
Version:

Function betweenNotEqual

betweenNotEqual( attribute, valueA, valueB, config?): Filter

Creates a filter that isolates attribute values strictly within two specified numerical boundaries.

Parameters

ParameterTypeDescription
attributeAttributeNumeric attribute to filter on
valueAnumberValue to filter from
valueBnumberValue to filter to
config?BaseFilterConfigOptional configuration for the filter

Returns

Filter

A filter instance

Example

Filter for items from the Sample ECommerce data model where the cost is greater than 100 and less than 200.

filterFactory.betweenNotEqual(DM.Commerce.Cost, 100, 200)
Last Updated: