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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
jagannalla
Partner - Specialist III
Partner - Specialist III

Why listbox don't have this future?

Hi,

Why qlikview don't have the below future for the listbox.

- I've taken one field(i.e. Group) in listbox along with one expression(i.e. MinGroup ) and i provided Windows Checkbox for the field of lisbox.

- Now the listbox looks with all data but when i select one or more values in the lisbox the remaining expression values shows empty.

For eg:

             Without selecting any value in the listbox

Capture.PNG

          After selecting few values in the listbox

Capture.PNG

- Can anyone help me is there anyway to achive this. B'coz the enduser wants to see all data.

1 Solution

Accepted Solutions
sbaldwin
Partner - Creator III
Partner - Creator III

Hi, it depends exactly how you want to keep the values, if you want to have the sum(MinGroup) regardless of any selection the user makes then you could use

sum({1} MinGroup)

if you wanted to only keep the sum(MinGroup) when the user selects your Group but to take into account other selections then you could use

sum({<Group>} MinGroup)

Thanks

Steve

View solution in original post

2 Replies
sbaldwin
Partner - Creator III
Partner - Creator III

Hi, it depends exactly how you want to keep the values, if you want to have the sum(MinGroup) regardless of any selection the user makes then you could use

sum({1} MinGroup)

if you wanted to only keep the sum(MinGroup) when the user selects your Group but to take into account other selections then you could use

sum({<Group>} MinGroup)

Thanks

Steve

jagannalla
Partner - Specialist III
Partner - Specialist III
Author

Thanks a lot steve.