icase in
The icase in match filter returns rows that contain a match of one or more specified values, regardless of the capitalization of the values.
Syntax
columnName- the column the filter will search for matching values.valueList- the set of values to match on. This supports:- a comma-separated list of variables:
A icase in X, Y, Z. The filter will returntruefor all rows where the value in columnAis equal toX,Y, orZ. - a java array:
A icase in X. The filter will returntruefor all rows whereAis equal to at least one element of the java arrayX. - a
java.util.Collection:A icase in X. The filter will returntruefor all rows whereAis equal to at least one element of the collectionX. - all other types:
A icase in X. The filter will returntruefor all rows whereAis equal toX.
- a comma-separated list of variables:
Examples
The following example returns rows where Color is in the comma-separated list of values. Capitalization is ignored.
The following example returns rows where Color is blue or Letter is a. Capitalization is ignored.
The following example returns rows where Color is in a collection of values.