Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
We have created QVDs by importing excel and data from other sources such as MS access. Can we export those QVDs back to excel after collating all the data sheets ?
Thanks,
Sachin
Hi, you can reload the QVD do whatever you want and then export it to .csv like this:
STORE [YourTableName] into YourTableName.csv(txt);
Hope it helps,
Andrés
you can try like
Table:
Load * from YourQVDFile;
store Table into Filename.csv(csv);
store Table into Filename.xls(xls);
Hi, you can reload the QVD do whatever you want and then export it to .csv like this:
STORE [YourTableName] into YourTableName.csv(txt);
Hope it helps,
Andrés
The file is created but neither opening in .csv nor in .xls
It isn't readable.
Thnx Andres. That was helpful.