Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Everyone,
I am getting the Native path error or System error in Qliksense Script.
I am having the script as below.
LET vToday = date(Today(),'YYYYMMDD');
SET vConnecction_String = 'Lib://SampleProject/Datafiles';
LOAD
Pname,
"Date"
FROM [$(vConnecction_String )/Monthly/Sample_$(vToday).xlsx]
(ooxml, embedded labels, table is Sheet1);
Issue Description :
While loading the data by calling variable in the FROM statement, Getting Native path error or System error.
Could you please help me on the same. Thanks in Advance.
Regards,
Venkat
There looks to be an extra whitespace after vConnection_String that shouldn't be there.
Thank for your reply...
But here in my case, i am not able to read the variables in FROM statement.
Any one help me on the same..
You are using the wrong variable name because of the extra space. You're getting the specific error you're getting because that incorrect name evaluates so the path isn't valid.
With the wrong variable name you have:
With the space removed: