Skip to main content
Announcements
Global Transformation Awards! Applications are now open. Submit Entry
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Table Not Found

Thanks

Madhu

8 Replies
MK_QSL
MVP
MVP

Table1:

Load * Inline

[

  A, B

  1, aa

  2, bb

  3, cc

];

NoConcatenate

Table2:

Load * Inline

[

  A, B

  4, xx

  5, yy

  6, zz

];

TAB:

Load *, RecNo(), RowNo() Resident Table2 Where A<>4;

Load *, RecNo(), RowNo() Resident Table1 Where A<>2;

Drop Table Table1;

Drop Table Table2;

PrashantSangle

Hi,

table1 and table2 have same dimension therefore it will auto conacatenated

if you dont want to auto conacatenated then write

NoConcatenate

after Table1 load

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
qlikviewwizard
Master II
Master II

Hi Use the script like this:

Table1:

your data

NoConcatenate

Table2:

your data


AB:


Your script



sujeetsingh
Master III
Master III

Use NoConcatenate

SreeniJD
Specialist
Specialist

Hi Josna,

Going back to basics of QV, when you have two tables with same number of columns(in fact same names)... QV engine auto concatenate the two tables... to avoid this, use "NoConcatenate" so that you can have two tables existed and then you can perform any resident load on these tables.

Happy to Help

Sreeni

qlikviewwizard
Master II
Master II

Hi Madhu, Did you able to resolve the issue?

Not applicable
Author

Yes Arjun

Thnq

MAdhu

qlikviewwizard
Master II
Master II

Hi Madhu,

Please close the thread by selecting Correct Answer and helpful for someone to know the answer.