Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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;
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;
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;
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.
Thankq Adimulam
Thanks Ramamsamy .