Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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
Partner - Champion III
Partner - Champion III

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.