Solved! Go to Solution.
<value prompt="Example:100">UPPER(FACILITYID) LIKE UPPER('%[value]%')</value>
What happens if you try this?<value prompt="Example:100">UPPER(FACILITYID) LIKE UPPER('%[value]%')</value>
I know this isn't what you are after, but if this gets results, there are some hidden spaces/characters in your attributes.
I've had issues like that before, then a LTrim(),RTrim() on the attribute column fixed it up.
Just a thought,
R_
[NEWFIELD] = Ltrim(Rtrim(FACILITYID))
<value prompt="Example:100">NEWFIELD = '[value]'</value>
What is the base data format? FGBD, PGDB, shapefile?
Also, have you tried making a new field and calculating it from the FACILITYID field and tried the search on that?[NEWFIELD] = Ltrim(Rtrim(FACILITYID))<value prompt="Example:100">NEWFIELD = '[value]'</value>
In the past I have resolved some issues this way. Never found the problem, but "fixed" it.
R_