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: 
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