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

Reg Combining the fields

Hi,

I have one field which contains 4 values like A, B, C,D.  My requirement is i want to add another value to the field, Which is a combination of 4 values A, B, C, D.  If i click on the field value, data regarding all 4 values should be displayed.

Is there any possibility?

Please give me some idea on this.

Thanks,

M V Reddy

2 Replies
swuehl
MVP
MVP

Maybe add something like this to your script:

LOAD * INLINE [

FIELD, SELECTVALUE

A,A

B,B

C,C

D,D

A,All

B,All

C,All

D,All

];

replace FIELD with your field name, so this inline table links with your field.

Then create a list box with SELECTVALUE and when selecting All, you should filter all values A,B,C,D.

Not applicable
Author

Hi Swuehi,

It's working fine, Thanks for your support.

Thanks,

M V Reddy