Function betweenNotEqual
betweenNotEqual(
attribute,valueA,valueB,config?):Filter
Creates a filter that isolates attribute values strictly within two specified numerical boundaries.
Parameters
| Parameter | Type | Description |
|---|---|---|
attribute | Attribute | Numeric attribute to filter on |
valueA | number | Value to filter from |
valueB | number | Value to filter to |
config? | BaseFilterConfig | Optional configuration for the filter |
Returns
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)