Unfortunately, Dynamics 365 Advanced Find and most standard filtering mechanisms do not directly support entering multiple "Contains" values as a single comma-separated string within one filter row.
The way Dynamics 365 filtering is designed, each condition in a filter row typically evaluates a single field against a single value or a set of values using a specific operator.
Why it doesn't work like Salesforce:
Salesforce's filter logic sometimes allows for a more natural language-like input where it can implicitly understand "OR" conditions within a single text field for certain operators. Dynamics 365's FetchXML-based filtering is more structured, requiring explicit "AND" or "OR" groups for combining multiple conditions.
Your Current Approach is the Standard Way in Dynamics 365:
Creating a separate row for each "Contains" condition and grouping them with an "OR" operator (as implied by the "AND" group at the top and the individual rows) is the standard and correct way to achieve the desired filtering in Dynamics 365 Advanced Find.
While you can't directly enter comma-separated values in a single "Contains" row, here are a few alternative approaches or considerations:
IF(CONTAINS(topic, "Sites"), TRUE, IF(CONTAINS(topic, "assets"), TRUE, IF(CONTAINS(topic, "genstudio"), TRUE, FALSE)))
nested conditions.<condition>
elements using the "like" operator (which is similar to "contains" with wildcards) and group them with an <or>
element. You could then save this FetchXML as a personal view.
In conclusion, for a "contains" type of filter with multiple values in Dynamics 365 Advanced Find, your current method of using multiple rows with the "Contains" operator and an implicit or explicit "OR" grouping is the standard and most straightforward approach. There isn't a direct equivalent to Salesforce's comma-separated "contains" functionality within the standard Dynamics 365 filtering interface.
The image you provided correctly illustrates the standard way to achieve this "OR contains" logic in Dynamics 365. You would ensure the top-level group is set to "AND" (as it is), and each individual "Topic Contains [value]" row acts as an "OR" condition within that group.
Daivat Vartak (v-9d...
225
Super User 2025 Season 1
Vahid Ghafarpour
78
Super User 2025 Season 1
Sahra
43