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

continously showing message 'Execution failed to reload' when reloading?


Hi,

I have below script in qvw. when I reload every time it is showing 'Execution failed to reload'.

Data:

LOAD RowNo() as Row,

     ID,

     name,

     address,

     Date(dateofbirth,'DD/MM/YYYY') as dateofbirth,

     Date([Enter Date],'DD/MM/YYYY') as [Enter Date],

     IF(Len(PurgeChar(StageData1,'0123456789'))=0,Evaluate(StageData1),StageData1) as StageData1,

     IF(Len(PurgeChar(StageData2,'0123456789'))=0,Evaluate(StageData2),StageData2) as StageData2,

     Status,

     Date([Status Date], 'DD/MM/YYYY') as [Status Date],

     Passed,

     Failed

FROM

QVD\Data.qvd]

(qvd);

Please can anyone suggest me is there any wrong in above script?

Thanks.

6 Replies
Not applicable
Author

Len(PurgeChar(StageData1,'0123456789'))=0,Evaluate(StageData1)


here when StageData1 is empty u r asking to evaluate

i tried evaluating empty field it gave "-"

so i hope loading such kind of data is creating problm but it must not throw any problem theoritically

Not applicable
Author

can u upload qvw?

Not applicable
Author

Thanks. when I comment RowNo() the script is executing fine. but only some values data is loading into the dateofbirth column and [Enter Date] columns. most of the data is missing in these two columns.

is there any way to set this problem?

Not applicable
Author

Please see attached. help me

PrashantSangle

Hi,

Do you have document log of it???

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
florentina_doga
Partner - Creator III
Partner - Creator III

use

IF(Len(PurgeChar(StageData1,'0123456789'))=0,text(StageData1),StageData1)