
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to create a does not equal search string?
Hi,
There is probably something small I am missing, but I can't seem to figure it out with my limited knowledge of the product. I am trying to create a simple button that will pull values that do not equal 1349. It makes me think that <> isn't correct to use for does not equal, but I am not sure what should be used instead.
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be do it in two actions
1) Select in Field
Field -> ResultTech
Search String -> 1349
2) Select Excluded
Field -> ResultTech

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Another option is to do like this
Select in Field
Field -> ResultTech
SearchString -> ='(' & Concat(DISTINCT {<ResultTech -= {1349}>} Chr(34) & ResultTech & Chr(34), '|') & ')'


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Have you tried as search string
<1349>1349
or
='<1349>1349'
?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much, appreciate the help.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
maybe also possible:
='=ResultTech<>1349'
regards
Marco


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
