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

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Selection Status for minimized ListBox

Hi all,

is it possible to show the Selection status of a ListBox (in this Listbox) if it is minimized without Macro or Formula?

I can set the Title-Backgroundcolor with:

If(GetSelectedCount(myListBox)>0,RGB(0,255,0), RGB(210,210,210))

So, if the ListBox has a selected value, then i can see that also by minimized ListBox.

I if i must do it with the top Formula then i must write the Formula for all my ListBoxes and there very many.

Thanks!

3 Replies
erichshiino
Partner - Master
Partner - Master

Hi, Eugen.

Can't you use multi-box? It has a built-in color code to show if there is all values are excluded and a gree icon to show if there is selection.

Regards,

Erich

Not applicable
Author

Hi,

thank you for answer.

No, i must use ListBoxes

Not applicable
Author

If(GetSelectedCount(myListBox)>0,RGB(0,255,0), RGB(210,210,210))

It would work if I call the object  name (myListBox) with a function.

For Example:

If(GetSelectedCount(GetCurrentObjectName())>0,RGB(0,255,0), RGB(210,210,210))

Does anyone know similar function?

Thanks