Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I just want to ask for a help if you've experienced the "General Script Error" on Qlik Sense.
I was loading a QVD file and find out that one specific field name was causing the error.
I comment it out and the whole script load was successfully executed.
Can you please provide me at least an idea how I can work it out?
It's already 3-days since I've encountered this and still have't got a solution.
The google search has different scenario which is not applicable on mine.
I hope you'll help me on this.
Thanks in advance to you!
can you copy your script
Here it is...
I just load the QVD file
[Spend]:
LOAD
Key
,Region
,Sheet1.Country
,Sheet1.Brand
,Campaign
,"Month"
,Month_No
,[Year] <<<---------------- This field name is the problem
,Quarter
,Amount
FROM [lib://Spend](qvd);
Can you try below script and let me know if the problem still exists.
[Spend]:
LOAD
Key
,Region
,Sheet1.Country
,Sheet1.Brand
,Campaign
,"Month"
,Month_No
,Year <<<---------------- This field name is the problem
,Quarter
,Amount
FROM [lib://Spend](qvd);
Many Thanks
Karthik
yes I already did that.
I even use
Year as year-New
and
even rename the year field before storing into QVD.
all of it still return with "General Script Error"