Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
salezian
Creator
Creator

List box - simple question

Hi Everyone

I'm trying to develop listbox with 2 columns: SKU Code and SKU Description. I've used expression to combine these two columns on single list box. It works when there is no active selection on SKU records. When selection is made then description stays only on selected row, on all other rows there is null value. Is there any way to workaround this bahavior ?

Regards.

M.

2 Replies
eliran
Creator III
Creator III

Hi,

What about creating a field in the load script instead of using expressions?

So load script should look like:

     SKU_Code,

     SKU_Desc,

     SKU_Code&' - '& SKU_Desc

Hope it helps,

Eliran.

salezian
Creator
Creator
Author

Hi

So simple . I'll use your solution. Anyway it bothers me a little why it can't be done on report.

Thanks for you solution.