Skip to main content
Announcements
New: No-code data prep in Qlik Cloud Analytics™ TAKE A TOUR
cancel
Showing results for 
Search instead for 
Did you mean: 
rabbani_sk
Contributor III
Contributor III

How to add "Data Values" in a listbox??

For Ex. i hav a field named "Product Code",

Product Code

  A

B

  C

D

E

User wants like this

Product Code

A+B

  C

  D

  E   So , My Question is how to add the data values in a field. Any Idea?

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Use a field expression in your listbox, select <expression> from the field drop down list on general tab (don't mix up with expression on expression tab!)

=if(match([Product Code],'A','B'), 'A+B', [Product Code] )

View solution in original post

2 Replies
swuehl
MVP
MVP

Use a field expression in your listbox, select <expression> from the field drop down list on general tab (don't mix up with expression on expression tab!)

=if(match([Product Code],'A','B'), 'A+B', [Product Code] )

rabbani_sk
Contributor III
Contributor III
Author

Hi Swuehl ,

Thanks for Reply..