Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Table Not found error

Hello Team member

When I am converting my table into qvd I am getting the Table not Found error,Eventhough I gave the table name while converting into qvd using store,can anyone correct me

below is my script

LOAD ProductID,

     OrderDate

FROM

E:\Qlikview\RichardBooks\BuildyourFirstApp\ProductOrderdate.xls

(biff, embedded labels, table is Sheet1$);

STORE ProductOrderdate into E:\Qlikview\RichardBooks\BuildyourFirstApp\ProductOrderdate.qvd;

1 Solution

Accepted Solutions
MayilVahanan

Hi


Try like this

ProductOrderdate:

LOAD ProductID,

     OrderDate

FROM

E:\Qlikview\RichardBooks\BuildyourFirstApp\ProductOrderdate.xls

(biff, embedded labels, table is Sheet1$);

STORE ProductOrderdate into E:\Qlikview\RichardBooks\BuildyourFirstApp\ProductOrderdate.qvd;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

4 Replies
MayilVahanan

Hi


Try like this

ProductOrderdate:

LOAD ProductID,

     OrderDate

FROM

E:\Qlikview\RichardBooks\BuildyourFirstApp\ProductOrderdate.xls

(biff, embedded labels, table is Sheet1$);

STORE ProductOrderdate into E:\Qlikview\RichardBooks\BuildyourFirstApp\ProductOrderdate.qvd;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

You should mention the name for the table other wise table will asign random names by itself.

You can check the name of the table in table view.

Hope Mayil Suggesstion described you how to set the table name.

Not applicable
Author

Thankq Adimulam

Not applicable
Author

Thanks Ramamsamy .