Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Any possible to Get two field Values in ListBox
| A | B |
|---|---|
| 1 | 3 |
| 2 | 1 |
| 3 | 5 |
| 4 | 7 |
| 5 | 6 |
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.
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.
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.