Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Exclude an Alternate State group

Hi all,

I have an object which I do not want it to be affected by a trigger. And the only way I found was by manipulating the expression, something like:

=If(GetSelectedCount(ID)>0, Concat(DISTINCT EmployeeID, ', '), '')

Is is possible to add the alternate state group in it but by excluding it.

All I could find was how to include it, example:

=If(GetSelectedCount(ID)>0, Concat( {AlternateStateA} DISTINCT EmployeeID, ', '), '')

Is it possible to exclude the state?

Thanks,

Labels (1)
4 Replies
sunny_talwar
MVP
MVP

What about this?

=If(GetSelectedCount(ID)>0, Concat({$} DISTINCT EmployeeID, ', '), '')

Not applicable
Author

I will give it a try, dont know if it will work for that particular solution...thank you.

Not applicable
Author

As I thought... the object (table chart) will still being affected by that selection. Thats why I thought of the alternate states. 

sunny_talwar
MVP
MVP

I am not sure what you are trying to do. Would you be able to elaborate a little more?