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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
techvarun
Specialist II
Specialist II

Table 1 and Table 2 and Table 3 Single Table

Hi All

   This May be a silly question

I have three tables

A

State

Region

Week

Sales

B

State

Statetxt

C

Region

RegionTxt

I need the result table

State

StateTxt

Region

RegionTxt

Week

Sales

Thanks

Varun

1 Solution

Accepted Solutions
simenkg
Specialist
Specialist

A:

Load * from A.qvd (qvd);

Left join (A)
Load * from B.qvd (qvd);

Left join(A)

Load * from C.qvd (qvd);

View solution in original post

2 Replies
simenkg
Specialist
Specialist

A:

Load * from A.qvd (qvd);

Left join (A)
Load * from B.qvd (qvd);

Left join(A)

Load * from C.qvd (qvd);

manojkulkarni
Partner - Specialist II
Partner - Specialist II

Use ApplyMap,

quick applymap example