# Function betweenNotEqual

betweenNotEqual( attribute, valueA, valueB): 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

# 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)