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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Get available items in a select field (non-gray items)

I'm trying to find a function, that would give me the available items in a select field. I can get the number of possible items (non-gray) using GetPossibleCount(fieldname), but not the actual values.

I'm not interested in the grayed out items, just the ones that I can actually select.

I'm not sure there is a way to achieve that, or is there?

1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

Hi Matthias,

Try,

Concat([Waybill Date],',') - output will be comma separated text.

View solution in original post

4 Replies
Mark_Little
Luminary
Luminary

Hi,

I may be missing what you want, as GetPossibleCount() does that.

Capture.JPG

Mark

tamilarasu
Champion
Champion

Hi Matthias,

Try,

Concat([Waybill Date],',') - output will be comma separated text.

Not applicable
Author

Untitled.png

Not applicable
Author

Hi Tamil

Awesome, that is excatly what I was looking for. I needed to add a distinct to only get every value once, but this works:

=Concat(Distinct FieldName,',')

I get: Completed,Maintenance,Scheduled

Thank you very much.

@Mark, Ramanjaneyulu

Thanks for your answers. I was looking for the actual values, and not the number of values. I guess my question wasn't very precise.