Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Scripting

Hi

i am having some trouble doing the following: I have imported some qvd files that have automatically linked in outer join. What i need to do now is to create a table, that i will need to store as qvd, that bings togheter fields from the differen tables.

How do i do this? I don't understand which is my 'from statement'.

tx

1 Reply
fkeuroglian
Partner - Master
Partner - Master

Hi Niccolo, you wil have to use Resident and join or concatenate the tables bring from qvd

example

TABLE1:

load A,B,C from qvd1

TABLE2:

load A,X,Z from qvd2

newtable

load A,B,C

resident TABLE1;

left join

load A,X,Z

resident TABLE2;

good luck

Fernando