Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
After selecting few values in the listbox
- Can anyone help me is there anyway to achive this. B'coz the enduser wants to see all data.
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
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
Thanks a lot steve.