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: 
Ns7703
Contributor II
Contributor II

Multiple query execution

I need to merge three reports in one application, Which displayed as worksheets in that one application. Lets call it X,Y,Z reports . In X reports I need to display all the projects with PSP _ELEMENT but in report Y I only need to display project with limited number of projects which holds some conditions like where where "PSP_ELEMENT" like '%-BZ-%' OR "PSP_ELEMENT" like '%-BZ%'. I want to ask how to write query in Data load editior in such a way that one worksheets display all the projects and another reports will display projects with some conditions

Labels (1)
1 Solution

Accepted Solutions
marksouzacosta
Partner - Specialist
Partner - Specialist

Not sure if I understand the problem, but you can combine different data sets originated from different queries. Something like:

MyTable:
SQL SELECT * FROM TableA WHERE Z = Y .....;

Concatenate(MyTable)
SQL SELECT * FROM TableB WHERE A = ''some search' OR .....;

Concatenate(MyTable)
SQL SELECT * FROM TableC WHERE Some other condition .....;

Read more at Data Voyagers - datavoyagers.net

View solution in original post

1 Reply
marksouzacosta
Partner - Specialist
Partner - Specialist

Not sure if I understand the problem, but you can combine different data sets originated from different queries. Something like:

MyTable:
SQL SELECT * FROM TableA WHERE Z = Y .....;

Concatenate(MyTable)
SQL SELECT * FROM TableB WHERE A = ''some search' OR .....;

Concatenate(MyTable)
SQL SELECT * FROM TableC WHERE Some other condition .....;

Read more at Data Voyagers - datavoyagers.net