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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Ns7703
Contributor III
Contributor III

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

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
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

View solution in original post

1 Reply
marksouzacosta

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
Follow me on my LinkedIn | Know IPC Global at ipc-global.com