Starting with 15.2, it's possible to import filters specifying the ConnectionName and isNumeric and Evaluate parameters. With 15.3.0.1, you can also import a field that seems numeric as text. This tutorial explains this new syntax.
Read "Filter Syntax, Parameters, and Options for Importing Recipients" prior.
From NPrinting 15.2 and forward, you may use the following syntax:
[connectionName].[field] = {value1<isnumeric,evaluate>,value2<isnumeric,evaluate>,...}<drop,unlock,lock,verify,excluded>
The old syntax still works. If you use the old syntax you don't need to specify the name of the connection, isNumeric and Evaluate parameters.
The other fields aren't mandatory.
If you don't specify the connection name, it will refer to the default connection. Entering this line of code, the Year field is set to two values:
Verify filter option is activated.
In the first part of this line of code the name of the connection of the Field is specified. By specifying this you can create different filters based on Fields from different connections.
In this case two Fields from two different connections are specified. With this new syntax it is possible to create filters based on fields from different connections.
After importing the Recipients, you'll find a new filter with two fields from two different connection.
Starting with 15.3, it's possible to explicitly set or unset a flag for the isNumeric and Evaluate parameters. Previous syntax will still work.
[connectionName].[field]={value1<isNumeric=yes,Evaluate=no>, value2<isNumeric=True,Evaluate=True>}
You can use "Yes" or "No" or the boolean values "True" or "False".
In the first part, the IsNumeric flag is explicitly set to Yes and Evaluate to No. In the second part the IsNumeric and Evaluate flags are both forced to True, which is synonymous with Yes. This means that the expression will be evaluated and return a numeric value.
The QlikView field CustomerIDText is created as a text field but it contains values that seem to be numbers. By inserting "IsNumeric=no" we are sure that the flag will be disabled and the value "0063" will be compared as a string.
You can import filter values that contain commas (,) by enclosing them between double quotes ("). Using a comma outside will continue to be the separator between two value.
You can import filter values that contain formulas with commas (,) by inserting them between double quotes(").
To import new Recipients refer to "How to Create and Import Recipients with Filters and Distribution Groups".
Great and clean explanation