Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
muniyandi
Creator III
Creator III

How to Get two fields in ListBox

Hi,

Any possible to Get two field Values in ListBox

AB
13
21
35
4

7

56

I Need Result

Result

1

2
3
4
5
6
7

I used the expression if(1>0,A OR B) But Expression Fail.

Muni.

2 Replies
jagan
Luminary Alumni
Luminary Alumni

Hi,

Try this in script level

Temp:

LOAD * INLINE [

A,    B

1,    3

2,    1

3,    5

4,   7

5,    6

];

Data:

LOAD

    A AS FullValues

Resident Temp;

Concatenate(Data)

LOAD

    B AS FullValues

Resident Temp;

Regards,

Jagan.

muniyandi
Creator III
Creator III
Author

Hi ,

Sorry for delay to reply.

Thanks for yours reply.

Scripting Level this method fine. But how to handle expression level . any passible ideas.

Muni.