Relevance if relevant

hey,
i have this query

(id of it, name of it) of bes fixlets whose ( name of it contains “mystring” OR name of it contains “mystring2”)

and i want to get only the relevant results not all of the results
what i need to add to this line?

How about

(id of it, name of it) of bes fixlets whose (name of it contains "mystring" OR name of it contains "mystring2" and applicable computer count of it > 0)

hii, thanks but not working=\

Oops, yeah got the and and or conflicting. Try this.

(id of it, name of it) of bes fixlets whose ((name of it contains “mystring” OR name of it contains “mystring2”) and applicable computer count of it > 0)

Try it in pieces. Start off with a filter of just “applicable computer count of it > 0”, or “exists applicable computers of it”, then add the string filters one at a time until you find where it is failing.

The string comparisons are case-sensitive. And this needs to be run in Session Relevance (dashboard, api, or web report), not in Client Relevance (fixlet, analysis)

thank you all:slight_smile: