Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Join table, resident table

Hi, I'm quite new to QlikView and am having some problems with a particular join statement.

Will the following cause problems for QlikView?

JOIN(Claim)
LOAD claimNumber,
authNumber&EpisodeNumber as comorbid_claim_link
Resident Claim;


Should I rather do something like:


Temp:

LOAD claimNumber,
authNumber&EpisodeNumber as comorbid_claim_link
Resident Claim;


Join(Claim)

LOAD claimNumber,
authNumber&EpisodeNumber as comorbid_claim_link
Resident Temp;


Drop table Temp;


1 Reply
edddddy24
Contributor II
Contributor II

hello.

do you already found the answer? if not, what about this:

maintable:

load

field1,

field2

from x.qvd(qvd);

left join(maintable)

load

field1,

field3

resident restable;

i hope it works for you.