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

Announcements
Congratulations to the new Qlik Luminary and Partner Ambassador class! Meet them here
cancel
Showing results for 
Search instead for 
Did you mean: 
Kushal_Chawda
MVP
MVP

Field matching

Dear All,

I stuck at the below requirement, your help will be appreciated.

I have one table with fields

tab1:

load A,

B,

C,

D,

E

From tab1

I have second table with fields

tab2:

load A,

B

From tab2

Now if you observed both the table it has common filed A, B.

But in table 2 I want to show C, D,E as blank.

Manually I can do this by loading tab2 as

tab2:

load A,

B,

'' as C,

'' as D,

'' as E

from tab2

But I don't want to do it manually, because I need to check 45 tables with tab1.i.e I need to check which fields are missing from 45 tables which is available in tab1, if it is missing assign it as blank.

Is there any way to automate using loop.

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Force concatenate them, like:

FinalTable:

Load

          *

From <tab1>;

Concatenate

Load

          *

From <tab2>;

View solution in original post

1 Reply
tresB
Champion III
Champion III

Force concatenate them, like:

FinalTable:

Load

          *

From <tab1>;

Concatenate

Load

          *

From <tab2>;