Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Table not found
STORE Outgoing INTO E:\DataOutgoing.qvd (QVD)
//OUTGOING:
NoConcatenate
Outgoing:
LOAD
Date,
OriginalTime,
Reference,
Type,
SettlementAmount,
//OUTGOING:
NoConcatenate
Outgoing:
LOAD
Date,
OriginalTime,
Reference,
Type,
SettlementAmount,
add noconcatenate (bold)
from online help
The NoConcatenate prefix forces two loaded tables with identical field sets to be treated as two separate internal tables, when they otherwise would be automatically be concatenated.
//OUTGOING:
Outgoing:
noconcatenate
LOAD
Date,
OriginalTime,
Reference,
Type,
SettlementAmount,
FROM
[DataLog\*.xls]
(ooxml, embedded labels, table is Outgoing);
STORE Outgoing INTO E:\DataOutgoing.qvd (QVD);
Use NoConcatenate in the second load.
Like,
Outgoing:
NoConcatenate
LOAD
Date,
OriginalTime,
Reference,
Type,
SettlementAmount,
FROM
[DataLog\*.xls]
(ooxml, embedded labels, table is Outgoing);
STORE Outgoing INTO E:\DataOutgoing.qvd (QVD);
Hope this helps.
Hi Olle,
Try this, I have commented some notes please follow that, Hope it will work for you.
Incoming:
LOAD Date,
OriginalTime,
Reference,
Type,
SettlementAmount, // after SettlementAmount , delete that one also
FROM
[DataLog\*.xls] // Try with absolute path of your excel
(ooxml, embedded labels, table is Incoming);
STORE Incoming INTO E:\DataIncoming.qvd (QVD);
Drop table Incoming; // Once Qvd generate then drop that table
Outgoing:
LOAD
Date,
OriginalTime,
Reference,
Type,
SettlementAmount, // after SettlementAmount , delete that one also
FROM
[DataLog\*.xls] // Try with absolute path of your excel
(ooxml, embedded labels, table is Outgoing);
STORE Outgoing INTO E:\DataOutgoing.qvd (QVD);
Drop table Outgoing; // Once Qvd generate then drop that table
-- Regards,
Vishal Waghole.