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

How to retracting multi selected values to variable in a sheet

hi,

there is list box collected values which is "Month"

what i wanna do is when i select multi values in the list box then set values i selected to valiable in a sheet.   

fllowing is expression i wrote...

valiable name : vSectMonth

definision : =Month  

It didn't work when select multi values such as feb,mar,apr ....

but when selected a value only one it worked!

how can i get multi selected values in valiable?

Regars,

olfesio

1 Solution

Accepted Solutions
perumal_41
Partner - Specialist II
Partner - Specialist II

Hi

use concat function

vSectMonth = concat(Month ,',')

Use this Expression helpful for u .

Regards

Perumal A

View solution in original post

2 Replies
perumal_41
Partner - Specialist II
Partner - Specialist II

Hi

use concat function

vSectMonth = concat(Month ,',')

Use this Expression helpful for u .

Regards

Perumal A

Not applicable
Author

hi,

Thank you for your help!

I solved it!