Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Error message while lodind data on incremental basis

Error message is attached.

Sript is like following:

Directory D:\Pradnya\Data\;

Temp:

Load Max(Date(Trim([Actual Ackowleged Date Time]),'DD/MM/YYYY hh:mm:ss')) as RECORD_DATE

//Load Max([Actual Ackowleged Date Time]) as RECORD_DATE

From

..\Qvd\Ticket_Log.qvd

(Qvd);

Let vReloadDate = Peek('RECORD_DATE');

//Let vReloadDate = NUM(FieldValue('RECORD_DATE',1));

Drop Table Temp;

Temp_Data:

Load *

From

[Weekly Status Report-BIICC EDW MnS - 12242010_12312010.xlsx]

(ooxml, embedded labels, table is Sheet1)

where [Actual Ackowleged Date Time] > $(vReloadDate);

Concatenate

Directory D:\Pradnya\Data\

Load *

From

..\Data\Qvd\Ticket_Log.qvd

(Qvd) where [Actual Ackowleged Date Time] < $(vReloadDate);

Store Temp_Data into ..\qvd\Ticket_Log.qvd;

Drop table Temp_Data;

1 Reply
Miguel_Angel_Baeyens

Hello,

Try quoting your date variable in all cases:

where [Actual Ackowleged Date Time] < '$(vReloadDate)';


Hope that helps.