0
Pending Review

Subgroups by using the IIF expressions

Tom A1 10 months ago updated by Radame Hernandez 4 months ago 1

I'm trying to organise my ScreenConnect Subgroups by using the expressions but on the true statement I'm unable to achieve what I'm after

IIF (GuestOperatingSystemName LIKE '*server*', ('!Servers', CustomProperty2) , CustomProperty2 )

https://docs.connectwise.com/ConnectWise_ScreenConnect_Documentation/Get_started/Host_page/Session_groups/Create_session_subgroups

Could someone be kind enough to point me in the right direction!

This works fine but I also need to include CustomProperty2 at the end of the true statement.

 IIF (GuestOperatingSystemName LIKE '*server*', '!Servers' , CustomProperty2 )

Thanks,

Tom

I am having similar issues with Subgroups.
How many IFF can I nested into one?
I have a company with 5 different locations and I cannot subgroup then.
This is what I have.
IIF (CustomProperty1 LIKE '*Downtown*', 'Downtown_Location', IFF (CustomProperty1 LIKE '*Tempe*', 'Tempe_Location', IFF (CustomProperty1 LIKE '*Dental*', 'Dental_Location', IIF (CustomProperty1 LIKE '*Henderson*', 'Henderson_Location', IFF (CustomProperty1 LIKE '*Pahrump*', 'Pahrump_Location','Owens_Location')))))

Returns (empty)