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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Noconcatenate on two similar tables and two different sheets

Hi,

I have two tables like below

Table A:

NAME     DOB     EmpID     Company     Salary

Table B:

NAME     DOB     EmpID     DeptID     Supervisor

And I don't want to associate both the tables by Join or concatenate.

I have two different sheets in my dashboard.

Sheet A deals with Table A, not with Table B data and

Sheet B deals with Table B, not with Table A data...

Is there a way i can implement this scenario into my QVW file? Basically I don't want Table B data flows into Sheet A.

I don't want to use Qualify *; to restrict the default concatenate.

Thanks,

Suresh

3 Replies
trdandamudi
Master II
Master II

Did you tried NoConcatenate  ?

Example:

Load A,B from sample_file1.csv;

noconcatenate load A,B from sample_file2.csv;

MK_QSL
MVP
MVP

Add Flag in both Tables

'TableA' as Flag

'TableB' as Flag

Now you can use both Table data differently using this flag

maxgro
MVP
MVP

it's not clear why you don't want to associate or concatenate

anyway if you want not associated tables, change the fields names

Table A:

load

NAME as NAMEA,    DOB as DOBA,     EmpID as EmpIDA ,    Company,     Salary

from ....;

Table B:

load

NAME,     DOB,     EmpID,     DeptID,     Supervisor

from .....;