Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI,
i want to hide object base on condition
the condition should be-
i should see the object im the current selection is empty
or
if the the curren selection have field - "employee","department","division"
if one or more of those fields and only those fields are selected i should see the object.
if a selection made on any othe field i want to hide the object.
how can i do it?
adi
You may try using system field $Field as -
=WildMatch(GetFieldSelections($Field),'*Customer Name*','*Country*','*ChannelId*')
This will show object if listed three fields are selected(any combination), if rest of the fields are selected, condition will be false.
Other than the specified conditions if you select any filter it will be hided ..
i found a solution-
=if(isnull(SubStringCount( GetCurrentSelections(':', ',', '@', 100), ':')+1),1,
if( SubStringCount( GetCurrentSelections(':', ',', '@', 100), ':')+1>
(WildMatch(getcurrentselections (':', '=', ';', 0 ),'*employee=*')
+WildMatch(getcurrentselections (':', '=', ';', 0 ),'*department=*')
+WildMatch(getcurrentselections (':', '=', ';', 0 ),'*division')),0,1))