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

Group Values

Hello All,

I have  a list box with Values A,B,C.

I want to create a group athe values 'A','B','C' to group them into one value called 'All' along with the indiviual values. The final inbox should be somewhat like

A

B

C,

All.

How can we do it here in other reporting tools, we could achieves this by grouping values.

Thanks

1 Solution

Accepted Solutions
swuehl
MVP
MVP

You can prepare your group in the script, like

LIST:

LOAD * INLINE [

List

A

B

C

];

LIST2:

LOAD List as List2, List Resident LIST;

LOAD 'All' as List2, List Resident LIST;

Then use field List2 for your list box.

Hope this helps,

Stefan

View solution in original post

1 Reply
swuehl
MVP
MVP

You can prepare your group in the script, like

LIST:

LOAD * INLINE [

List

A

B

C

];

LIST2:

LOAD List as List2, List Resident LIST;

LOAD 'All' as List2, List Resident LIST;

Then use field List2 for your list box.

Hope this helps,

Stefan