Dynamic Prompt list with substring search

 How to filter more than one substring in the Find search box when selecting a long list of elements from a dynamic prompt list                       

There are cases in which a dynamic prompt is used to qualify attributes selected to be part of a report, but the attribute list is very long.
Attributes like ‘Street Address’ may contain keywords like ‘St’, ‘Ave’, ‘Dr’ that can be used to reduce the list of selected elements.
It is possible to filter the list using the find box and to include one or more substrings that can be logically ‘ORed’ (Will be included if any of the substrings is found) or logically ‘ANDed’ (Will be included if all substrings).
Pattern delimiters are ‘ ‘ (space), ‘%’ and ‘_ ‘
Space or blank  = will be used for logical ‘OR’
‘%’  =  Will be used for logical ‘AND’  usually in pairs (begin-end of string)
‘_’   =  Will be used as wildcard in lieu of space (blank)

 CASE 1: Filter all attributes that contains ‘z’ or ‘x’ strings:


 
In this example, all listed addresses contains string ‘z’ OR string ‘x’ in any position of the description.

CASE 2: Filter all attributes that contains first the string ‘Old’ AND then ‘Hwy’:


Observe that substring ‘Old’ and ‘Hwy’ can be part of other string and can start in any position.  However, using %Hwy%%Old% will produce a different result.
In this example, this filter will produce an empty list as there is no address that have substring ‘Hwy’ before ‘Old’.

CASE 3: Filter all attributes that contains the substring ‘Old Hwy’:



Special character  ‘_’ should be used to represent a single space. Cannot be duplicated for representing multiple space.
In this example, if the filter were ‘_Old_Hwy’, the last two elements will not be shown as they do not begin with spaces.

Comments