I think I'm looking to confirm if there is there a way to exclude fields from being searched?
2 Antworten
Also this:
https://help.salesforce.com/articleView?id=000230635&language=en_US&type=1
In particular...
How to use search operators
AND - search for items that match all of the search terms.
AND NOT - search for items that don't contain the search term.
OR - search for items containing at least one of the search terms.
Parenthesis - group search terms together (grouped search terms are evaluated before other terms in your string).
Quotation marks - search for items that match all of the search terms in the order entered.
You can combine multiple operators in a search string and they'll be evaluated in the following order:
1. Parenthesis
2. AND or AND NOT (in order from right to left)
3. OR