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

Getting table not found error

I am doing a simple load of data from one table to another as follow:

Table2:

Load

Field1,

Field2,

Field1 & '/' & Field2 as Field3

Resident Table1;

Table3:

Load Distinct *

Resident Table2;

When I reference my script later in the code, I get an error saying that Table3 can not be found.

3 Replies
ckchouk123
Contributor III
Contributor III
Author

When I reference Table 3 later in the code, I get an error saying that Table3 can not be found.

luismadriz
Specialist
Specialist

Hi,

As the fields in Table3 are exactly the same as in Table2 Qlik would concatenate into Table2

Use NoConcatenate

I hope this helps,

Cheers,

Luis

luismadriz
Specialist
Specialist

Table3:

NoConcatenate

Load Distinct *

Resident Table2;