Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Table with all keys

Hello,

i have 10 tables as sources.

I want to make a table with all the key in it.

¿how could it be done?

1 Solution

Accepted Solutions
priyasawant
Creator II
Creator II

Kindly create a link table of all the keys of different tables.

You can go through the below links for further clarification.

https://community.qlik.com/thread/132848

Linking Tables in Qlikview

View solution in original post

6 Replies
ahaahaaha
Partner - Master
Partner - Master

Hi Pablo,

Too general description of the task. Without the source data it is very difficult to help.

Regards,

Andrey

stabben23
Partner - Master
Partner - Master

Search for "create linktable" or similar.

PrashantSangle

Hi,

Are you looking for link table???

search for link table on community.

Regards,

Prashant

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
PrashantSangle

or using concatenate you can create one table.

solution1:

table1:

Load key1,t1_field1,t1_field2 from table1;

table2:

Load key2,t2_field1,t2_field2 from table2;


table3:

Load key3,t3_field1,t3_field2 from table3;


link_table:

Load key1 from table1;       // You can use resident load also but if data is huge then resident load is performance killer

concatenate

Load key2 from table2;

concatenate

Load key3 from table3;


solution 2: One table

table1:

Load key1,t1_field1,t1_field2 from table1;

concatenate

Load key2,t2_field1,t2_field2 from table2;

concatenate

Load key3,t3_field1,t3_field2 from table3;


Regards,

Prashant


Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
ramasaisaksoft

if you want to see all the fields and tables use a table box and call system fields ( $Table,$Fields) it will gives all Tables & fields  as you mentioned Tables names in that script.

priyasawant
Creator II
Creator II

Kindly create a link table of all the keys of different tables.

You can go through the below links for further clarification.

https://community.qlik.com/thread/132848

Linking Tables in Qlikview