Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I've a little question about checkboxes.
I've implemented them in my dashboard. And in my desk-top version, the non-selected items deissapear and also the checkboxes.
If I look in the accespoint to the dashboard the items dissapear but the checkboxes don't hide.
Can I hide those checkboxes?
Regards,
Kris
Perhaps by changing the field to an expression: aggr(Artikelomschrijving, Artikelomschrijving)
If I do that, Nothing shows up in my list box...
Then maybe the field name isn't Artikelomschrijving. Qlikview is case sensitive so you need to use exact case sensitive field names.
Or did you try to enter an expression on the Expressions tab? I meant selecting the option <Expression> in the Field dropdown box on the General tab. If you select that then Expression Editor will open and you can enter an expression that generates the values for the listbox.
Hi,
If I use an expression I don't get anny item.
The fieldname that I use in the List Box is ArtikelomschrijvingNed.
Is it possible that there are no possible values for ArtikelomschrijvingNed due to the selections you made in the other fields? Do you see any white value if you use ArtikelomschrijvingNed as field in a listbox or are all values grey?
try:
Aggr(Only({<Field_Name=>}(Field_Name)),Field_Name)
Regards
Rahul
Actually my question is, why is there a difference between what I see in My Desktop and in the accesspoit.
In my Desktop-version I have ony checkboxes for the possible values.
And in my accesspoint I also see checkboxes for the non-possible values.
I would like to see in the access-point the same as in the desktopversion.
Thank you Rahul. It's a nice solution to make the listbox just als long as there are values.
Only, if I select one value. in the dashboard in the accesspoint, the values are hidden but the checkboxes did not hide.
if that's the result you are after go for:
Aggr(Only((Field_Name)),Field_Name)
Regards
R