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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
priyarane
Specialist
Specialist

concatinate

Hi Guys,

I have a issue with concatinate like below;

Scenario 1

Qvd1:

A,B

from Qvd1;

Concatinate(Qvd1)

load

C

from Qvd2;

Then I am not able to see C's data -    and looks like;A,B,C
1,2,-

4,8,-

Scenario 2

Qvd2:

C

from Qvd2;

Concatinate(Qvd2)

load

A,B

from Qvd1;

Then I am not able to see A,B's data -    and looks like;

A,B,C
-,-,Z

-,-,Y

Labels (1)
10 Replies
Anonymous
Not applicable

Hi Priya,

In your script couple of load's are missing and please correct concatenate keyword spelling

Try :

//Scenario 1

Qvd1:
Load A,B
from ../../Qvd1;

Concatenate
Load C
from ../../Qvd2;


//Scenario 2

Qvd2:
Load C
from ../../Qvd2;

Concatenate
Load A,B
from ../../Qvd1;

Regards

Neetha