Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
knightwriter
Creator III
Creator III

List Box Properties query

Hi All,

If I have a list of activities in a List box, is it possible to add an expression or definition to group some activities together?

For example my current list box is:

Event - rock climbing                                         

Event - hill climbing                                           

Event - swimming

Training - presentation

Training - one to one

Outcome I want is:

Event

Training

Many thanks.

1 Reply
JonnyPoole
Employee
Employee

You can alter the list box to show the results of an expression rather than a field with this:

Untitled.png

Then bucket the values with an expression . Lots of possibilities. Here is one with wildcard matching and i threw in an 'other' category if you get unexpected values.

if(  wildmatch([FieldName],'Event*'),'Event', if( wildmatch([FieldName],'Training*','Training','Other'))