Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
vikasmahajan

Forced concatenation

Dear All

Can any one have force concatenation qvw demo and what is that ?

Thanks

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
3 Replies
tresesco
MVP
MVP

Forced Concatenation

If two or more tables do not have exactly the same set of fields, it is still possible to force QlikView to concatenate

the two tables. This is done with the concatenate prefix in the script, which concatenates a table

with another named table or with the last previously created table.

Example:

load a, b, c from table1.csv;

concatenate load a, c from table2,csv;

The resulting internal table has the fields a, b and c. The number of records in the resulting table is the sum

of the numbers of records in table 1 and table 2. The value of field b in the records coming from table 2 is

NULL.

PFA

er_mohit
Master II
Master II

Concatenation

tab1:

Load col_a, col_b, col_c from ...;

Concatenate (tab1)

Load col_b, col_x, col_y from ...;

Concatenation adds the records from the load to a previously loaded table (tab1) in the example.

There will be one table (named tab1 in the example) containing all fields from the "original" tab1, and any new fields from the second load,

so assuming two records was in the original tab1, and three new comes fro the second load:

original tab1

col_acol_bcol_c
jhkjhkhkjjjkjjkgreen
hhih89hyohbhbbred

second load

col_ccol_xcol_y
blackkjlkjljvjvjh
whitebbkbbbblii
reddfyyfvbkh

the concatenated tab1 will look like:

tab1

col_acol_bcol_ccol_xcol_y
jhkjhkhkjjjkjjkgreen

hhih89hyohbhbbred



blackkjlkjljvjvjh


whitebbkbbbblii


reddfyyfvbkh

go to this link

http://www.qlikfix.com/2010/12/09/merging-tables-concatenation/

http://qlikviewnotes.blogspot.in/2009/11/understanding-join-and-concatenate.html

Not applicable

forced  concatination is a kind of methodology that we can concatinate two table s though they dont have any field in common............for that we have to rename the field