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: 
canmarroig
Partner - Creator
Partner - Creator

List box using text search in set analysis

Hi, I want to create a list box where i want to list only some values using set analyis in searching text. I've tried to use concat since Maxstring gives me only 1 value, i need a list of value,

=concat({<Code={"AB/123/1_G*"},Dimension1={'80'}>} Code,'')

but i don't obtain what i need.

Can you help me?

1 Solution

Accepted Solutions
antoniotiman
Master III
Master III

Hi Anna,

Try like this

=Aggr(Only({<Code={"=Left(Code,10) ='AB/123/1_G'"},Dimension1={'80'}>} Code),Code)

Regards,

Antonio

View solution in original post

2 Replies
antoniotiman
Master III
Master III

Hi Anna,

Try like this

=Aggr(Only({<Code={"=Left(Code,10) ='AB/123/1_G'"},Dimension1={'80'}>} Code),Code)

Regards,

Antonio

canmarroig
Partner - Creator
Partner - Creator
Author

Thank you Antonio, i know there was something i missed.