Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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);