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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
renjithpl
Specialist
Specialist

call field from previous loaded table

Hi all,

I have a small scenario. Below is my code and example

First:

Load

A,

B,

C

From table ABC.xlsx;

Second:

Load

X,

If(B=X, A) as Y, // i want to bring B from above loaded script to table"Second" with a condition

From table XYZ.xlsx;

how can i achive this.?

Thanks in advance.

REn

1 Solution

Accepted Solutions
Not applicable

Hi Ranjit,

below is the sollution:

check if it works and let me know

First:

Load

A,

B,

C

From table ABC.xlsx;

join

Second:

Load

X

From table XYZ.xlsx;

Third:

load *,

If(B=X, A) as Y

resident First;

Drop table First;

View solution in original post

2 Replies
Not applicable

Hi Ranjit,

below is the sollution:

check if it works and let me know

First:

Load

A,

B,

C

From table ABC.xlsx;

join

Second:

Load

X

From table XYZ.xlsx;

Third:

load *,

If(B=X, A) as Y

resident First;

Drop table First;

renjithpl
Specialist
Specialist
Author

thanks a lot, dude. it worked. 🙂