Easier way to have many sub-session group filters
I currently have a massive set of IIF statements to filter 1 group into several sub-groups here is an example:
IIF (GuestMachineName LIKE '*A-*', 'A',IIF (GuestMachineName LIKE '*B-*', 'B',IIF (GuestMachineName LIKE '*C-*', 'C','OTHER')))
This shows a tree like:
GROUP
-> A
--> A-1
--> A-2
-> B
--> B-1
--> B-2
-> C
--> C-1
--> C-2
-> OTHER
--> D-1
--> E-1
Is there an easier way to do this? If not this would be my request
I love the "Subgroup Expressions" functionality. Since it was introduced it's made organization of some of my groups much easier.
But I need to be able to either have multiple subgroups or be able to indent subsequent groups in some fashion. Using offsets (" ", ". " and "+ ") don't work because the spaces are truncated.
For example. Devices with an SLA need to be major-grouped separately from one-off clients, and within that major grouping I need to identify specific work to be done (subgroup), state (subgroup), client (subgroup), major OS (subgroup), minor OS (subgroup), and detailed OS (subgroup). This layout allows me to quickly perform group operations without having to run a search each time.
With subgroups the way they are, I have to use a session filter that always includes "(CustomProperty2<>'') And ..." for an entire series of additional groups so they can act as subgroups, and there's no clear visual indicator (ideally a treeview style indentation) to show that they're children of the greater group.