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: 
beyhur_kaya
Contributor
Contributor

How to excell sheets convert to single QVD

I have five excell sheet.I want to convert them into a single qvd.it gives me error when I write code.

Table1: 

LOAD * 

FROM [01.11.2016 KRC HAM KUMAŞ.xlsx]

(ooxml, embedded labels, table is [BASKI DETAY]);

 

JOIN LOAD * 

FROM [01.11.2016 KRC HAM KUMAŞ.xlsx]

(ooxml, embedded labels, table is [BASKI ÖZET]);

 

JOIN LOAD *  

FROM [01.11.2016 KRC HAM KUMAŞ.xlsx]

(ooxml, embedded labels, table is [HAM KMŞ DTY]);

Join LOAD *

From  [01.11.2016 KRC HAM KUMAŞ.xlsx]

(ooxml, embedded labels, table is [HAM KMŞ ÖZET]);

Join LOAD *

FROM [01.11.2016 KRC HAM KUMAŞ.xlsx]

(ooxml, embedded labels, table is [ÖZET KUMAŞ]);

STORE Table1 INTO C:\..\...\Documents\QlikViewExamples\FileAll.qvd;

Gives error table not found.

1 Reply
bohravanraj
Partner - Creator II
Partner - Creator II

Try below Code

Table1:

LOAD *

FROM [01.11.2016 KRC HAM KUMAŞ.xlsx]

(ooxml, embedded labels, table is [BASKI DETAY]);

Concatenate(Table1)

LOAD *

FROM [01.11.2016 KRC HAM KUMAŞ.xlsx]

(ooxml, embedded labels, table is [BASKI ÖZET]);

Concatenate(Table1)

LOAD * 

FROM [01.11.2016 KRC HAM KUMAŞ.xlsx]

(ooxml, embedded labels, table is [HAM KMŞ DTY]);

Concatenate(Table1)

LOAD *

From  [01.11.2016 KRC HAM KUMAŞ.xlsx]

(ooxml, embedded labels, table is [HAM KMŞ ÖZET]);

Concatenate(Table1)

LOAD *

FROM [01.11.2016 KRC HAM KUMAŞ.xlsx]

(ooxml, embedded labels, table is [ÖZET KUMAŞ]);

STORE Table1 INTO C:\..\...\Documents\QlikViewExamples\FileAll.qvd;