# Function numeric

numeric( attribute, operatorA?, valueA?, operatorB?, valueB?): Filter

Creates a custom numeric filter that filters for given attribute values.

# Parameters

Parameter Type Description
attribute Attribute Numeric attribute to filter
operatorA? string First operator
valueA? number First value
operatorB? string Second operator
valueB? number Second value

# Returns

Filter

A custom numeric filter of the given attribute

# Example

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

filterFactory.numeric(
  DM.Commerce.Cost,
  NumericOperators.From,
  100,
  NumericOperators.To,
  200
)