Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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!
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
Hi,
thank you for answer.
No, i must use ListBoxes
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