Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

List box

Can it possible to combine 2 listbox into a single listbox.

3 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     What do you mean?Do you need to display two field values in to one?

Celambarasan

Not applicable
Author

yes

CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     If need like this you have to do it in the Load script itself in to one field like below

     Table1:

          Field1,Field2

     Table2:

          Field3,Field4

     FilterTable:

     Load

          Field1,

          Field1 as FilterField

     Resident Table1;

     Concatenate

     Load

          Field3,

          Field3 as FilterField

     Resident Table2;

use FilterField in Listbox

Celambarasan