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: 
sat_tok52
Creator
Creator

exclude list box selection

Hi Guru's,

I have list box have A,B,C data and also have a straight table ,as per my requirement if I select list box data A my straight should exclude A data and it should show B,C Data,it means it should exclude current selection show remaining data.

In any help.

Thanks,

Sateesh.T

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Try this as your set analysis in your expression: {<ListBoxField = e(ListBoxField)>}

For an expression Sum(Sales) you can do -> Sum({<ListBoxField = e(ListBoxField)>}Sales)

View solution in original post

4 Replies
sunny_talwar
MVP
MVP

Try this as your set analysis in your expression: {<ListBoxField = e(ListBoxField)>}

For an expression Sum(Sales) you can do -> Sum({<ListBoxField = e(ListBoxField)>}Sales)

sat_tok52
Creator
Creator
Author

Hi Sunny

Thanks for quick response.When I am using set analysis initially my table not showing any data after selecting data it's working fine but my table  should show all data without selecting.

Thanks ,

Sateesh

sasikanth
Master
Master

Hi,

Try this

=sum({<ListBoxField ={'*'}-{'$(=GetFieldSelections(ListBoxField ))'}>} Sales)

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

=If(GetSelectedCount(ListBoxField) > 0,

Sum({<ListBoxField = e(ListBoxField)>}Sales),

sum(Sales))


Hope this helps you.


Regards,

Jagan.