How would I use an expression in body::esri:visible to show a field if it does not contain? I tried ${device}!='Texas' and ${device}!='Arizona' and ${device}!='Nebraska' however it still does not show the filed if it is not those area's. Any help would be greatly appreciated.
Thank you!
Doesn't contain what, exactly? Is that a "State" dropdown menu?
Also, you may wish to try "or" instead of "and"
Tried both "and" and "or", still no go.
Few things to try.
First is this a select one or select multiple?
Second are you checking the Name or Label value? You need to check the name value from the list.
Third I have sometimes seen != getting weird if there is no spaces. Try ${device} != 'Texas'
Fourth if none of that works try not(${device} = 'Texas')
Hopefully one of those does it.
${device} value is a text value, and I have tried all of the above, the not statement, the spaces. Still not working, unless I am unable to do it with a text box value.
These equations are caps sensitive.