Documentation | Advanced Search
The Advanced Search feature allows you to refine your search results by applying specific conditions to your data.
This guide will walk you through the process of using the filter function.
The Advanced Search can be used on any screen that contains a data table and can be a powerful search tool.
When selecting an operator, you will see multiple options:
%
as a wildcard for partial matches. Example: Searching ad%
in a username field will match "admin" and "advisor".not like 'test%'
will exclude usernames like "tester" or "test123".in ('active','cactus','apple')
will show only records with these values.not in ('active','cactus','apple')
will remove these values from results.'active','pending'
). Ensure correct formatting for accurate results.in ('admin','editor')
).