Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I'm searching for a function to get the information, how many items in a listbox the user has selected. I have months in a listbox an need to change the scale of the speedmeter on the information how many items are selected.
I know that with
=only([monthlistbox])
I can read the name of the selection. But I can't find a solution for how many items are selected.
Thanks for an answer and best regards!
Andre Voth
Hi
Use the following:
GetSelectedCount("monthlistbox")
This assumes that "monthlistbox" is actually the field name in the list box.
Hi
Use the following:
GetSelectedCount("monthlistbox")
This assumes that "monthlistbox" is actually the field name in the list box.
hi,
probably u can use count function
ex: count(distinct [monthlistbox])
thanks
Thank you very much, this was exactly the funtion I was looking for but not able to find...
Andre