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: 
MuraliPrasath
Creator III
Creator III

List Box Query?

Hi,

I need to list out only the data that starts from 'AB' in my list box. how to achieve this?

Need help!

Capture.PNG

1 Solution

Accepted Solutions
Anonymous
Not applicable

Hi,

Go to ListBox Properties --> Drill down Dimension to expression --> Write expression

If(left(PROD_HIER,2)='AB',PROD_HIER)

1.JPG

View solution in original post

4 Replies
arulsettu
Master III
Master III

if(wildmatch(PROD_HIER,'AB*'),PROD_HIER)

avinashelite

Try like this

=if(PROD_HIER like 'AB*',PROD_HIER)

Anonymous
Not applicable

Hi,

Go to ListBox Properties --> Drill down Dimension to expression --> Write expression

If(left(PROD_HIER,2)='AB',PROD_HIER)

1.JPG

surendraj
Specialist
Specialist

In liastbox-->General-->field--->Expression-->edit--->

If(Trim(left(PROD_HIER,2)='AB',PROD_HIER)