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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Table not found error

Hi all,

I'm trying to load a table from a particular sheet, then concatenate a table from a different sheet.  this is the error message:

Table not found

Concatenate(qlikviewtest)

Load *

From

(ooxml, embedded labels, Table is Jan14)

this is the script i'm using:

['qlikviewtest']:

LOAD *

FROM

(ooxml, embedded labels, Table is Dec13);

Concatenate(qlikviewtest)

LOAD *   

From

(ooxml, embedded labels, Table is Jan14);

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

Just remove the brackets and quotes from the label:

qlikviewtest:

load *...

concatenate(qlikviewtest)

load *...

View solution in original post

2 Replies
Not applicable
Author

Hi,

Just remove the brackets and quotes from the label:

qlikviewtest:

load *...

concatenate(qlikviewtest)

load *...

aveeeeeee7en
Specialist III
Specialist III

Try this:

qlikviewtest:

LOAD *

FROM

(ooxml, embedded labels, Table is Dec13);

Concatenate

LOAD *   

From

(ooxml, embedded labels, Table is Jan14);