Filter Builder use case examples
The Filter Builder allows you to create some straight forward device lists, as well as very specific filtered lists depending on your requirements. The examples below show how the filtering can be used to achieve your goal by building complex filters from the basic building blocks.
Click on an operator in the tables below to open (and close) some examples. The examples do not cover all possible combinations but should provide enough insight into how the And, Or, Not And and Not Or operators interact with each other to provide results.
- And and Or will include devices that meet the criteria in the filtered devices list.
- Not And and Not Or will exclude devices that meet the criteria from the filtered devices list.
Single Operators |
---|
AND
ScenarioAs a User I need to filter the devices to view only those when Device type is Desktop and OS is Macos. SolutionBy using the And combination of Device type and OS you can include devices that meet both criteria. In the Filter Builder
ResultThis filter will only include devices that meet both the criteria Device type is Desktop and OS is Macos. |
OR
ScenarioAs a User I need to filter devices to view all that contain Customer name is Test or Device type is Server. SolutionBy using the Or combination of Customer name and Device type you can include devices that meet either criterion. In the Filter Builder
ResultThe filter will only include devices that meet either criteria, Customer name is Test or Device type is Server. |
NOT AND
ScenarioAs a User I need to filter to exclude devices that have a Device type of Server and the OS is Windows. SolutionUse the Not And operator to exclude specific combinations. In this case, we will excluded devices that are Device type of Sever and the OS is Windows. In the Filter Builder
ResultThis filter will exclude any devices that meet both the criteria Device type of Server and OS is Windows. |
NOT OR
ScenarioAs a User I need to filter devices to exclude devices that are either Device type of Desktop or the OS is Macos. SolutionUse the Not Or operator to exclude devices that meet either of the Device type is Desktop or OS is Macos conditions. In the Filter Builder
ResultThis filter will exclude devices that meet either criteria Device type is Desktop or OS is Macos. |
Grouped Operators |
---|
AND with NOT AND
ScenarioAs a User I need to filter devices with multiple conditions:
SolutionBy Combining an And condition with the Not And condition, we can create a filter that includes specific devices based on multiple criteria while excluding others based on different criteria combinations. In this case, devices with Device type as Server and running Windows are included, while those with both Internal IP address containing 220 and 4GB RAM are excluded from final result. In the Filter Builder
ResultThis filter will include devices that meet the criteria Device type is Server and have WindowsOS, as well as exclude any devices thatmeet the criteria Internal IP address contains 220 and RAM is 4GB. |
OR with NOT OR
ScenarioAs a User I need to filter devices with multiple conditions:
SolutionBy Combining an Or condition with Not Or condition, we can effectively filter for devices that meet broad inclusion criteria while still excluding specific undesired combinations. Devices running Windows or OS version containing build22631 are included, but those with OS versioncontaining Enterprise or 4GB RAM are excluded from final result. In the Filter Builder
ResultThis filter will include devices that meet either criteria OS is Windows or OS version contains build22631, as well as exclude any devices that meet either criteria OS version contains Enterprise or RAM is 4GB. |
AND with NOT OR
ScenarioAs a User I need to filter devices with multiple conditions:
SolutionBy using an And combination of Device type and OS you include devices that meet both criteria. Adding a Not Or group allows you to exclude devices that meet either of the specified exclusion criteria, excluding those have either 4GB of RAM or BIOS containing ROM. The final results includes only the devices that meet the inclusive criteria for both conditions without matching the exclusion criteria. In the Filter Builder
ResultThis filter will include devices that meet both criteria Device type is Server and OS is Windows, as well as exclude any devices that meet either criteria RAM is 4GB or BIOS contains ROM. |
OR with NOT AND
ScenarioAs a User I need to filter devices with multiple conditions:
SolutionBy using an Or combination of Device Type and OS, you include devices that meet either criterion. Adding a Not And condition allows us to exclude devices that meet both specified exclusion criteria. In this case we have included devices that are either Severs or running Windows, and excluded those that have both 4 GB of RAM and BIOS contains ROM. The final result includes only the devices that meet the inclusive criteria without matching the exclusion criteria. In the Filter Builder
ResultThis filter will include devices that meet either criteria Device type is Server or OS is Windows, as well as exclude any devices that meet both criteria RAM is 4GB and BIOS contains ROM. |
NOT OR with NOT AND
ScenarioAs a User I need to filter devices with multiple conditions:
SolutionBy using the Not Or combination of Device type and OS, you exclude devices that meet either criterion. Adding a Not And condition, allows you to further exclude devices that meet both specified criteria. In this case we have excluded devices that are either servers or running Windows, and further excluded those that have both BIOS contains ROM and 4GB of RAM. The final result includes only the devices that meet neither exclusion criteria. In the Filter Builder
ResultThis filter will excludes devices that meet either criteria Device type is Server or OS is Windows, as well as include devices that meet both criteria RAM is 4GB and BIOS contains ROM. |