Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Issue with Store function

SET ThousandSep=',';

SET DecimalSep='.';

SET MoneyThousandSep=',';

SET MoneyDecimalSep='.';

SET MoneyFormat='£#,##0.00;-£#,##0.00';

SET TimeFormat='hh:mm:ss';

SET DateFormat='DD/MM/YYYY';

SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff]'; SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';

SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';

[Overview]:

LOAD

sec_acct_hldg_id as sec_acct_hldg_id1 ,

     DQ_Dimension

FROM

[.......\Exceptions_New_Dec.csv]

(txt, codepage is 1252, embedded labels, delimiter is ',', msq);

[Overview]:

LOAD sec_acct_rec_id

FROM

[...........................\Main_Dataset_Dec.csv] (txt, codepage is 1252, embedded labels, delimiter is ';', msq);

Final:

LOAD sec_acct_hldg_id1,

DQ_Dimension,

sec_acct_rec_id;

store Final into .....................\Final.qvd

The Error MSG I get is....

Table not found

store Final into .....................\Final.qvd

1 Reply
Nicole-Smith

Change:

Final:

LOAD sec_acct_hldg_id1,

DQ_Dimension,

sec_acct_rec_id;

To:

Final:

NOCONCATENATE LOAD sec_acct_hldg_id1,

DQ_Dimension,

sec_acct_rec_id;

Since Final has the same fields as Overview, it's concatenating them together.