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

Concatenation and No concatenation

Hi All,

Is it possible to use NO CONCATENATE and CONCATENATE FUNCTIONS on Same Load Statement at a Time.

Ex:

Tab:

Load

F1,

F2

From Tab;

Tab1:

Load

F1,

F2,

From Tab1;

No Concatenate

Concatenate(Tab1)

Load

F1,

F2

From Tab3;

can we do like above??

Thanks in advance.

regards

Prathap.

3 Replies
sunny_talwar

AFAIK, this isn't possible. What is the reason behind doing this?

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

HI,

You will have to use Noconcatenate in second load function else it will merge them.

like this.

Tab:

Load

F1,

F2

From Tab;

Tab1:

NoConcatenate Load

F1,

F2,

From Tab1;

Concatenate(Tab1)

Load

F1,

F2

From Tab3;

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable
Author

Hi Sunny,

Actually i dont know,that is why i asked you guys.

Thanks For your reply..

regards

prathap