Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have to run a qvf script, but I don't know how to do it with the Qlik Sense Desktop app.
In the attached file there is the qvf file, it needs some property files.
Thanks
It's not clear what is your problem...
Are you missing include file? Do you have other problems executing the script in this QVF file?
Can you post the error log here?
VK
It's not clear what is your problem...
Are you missing include file? Do you have other problems executing the script in this QVF file?
Can you post the error log here?
VK
I have a problem in the path configuration. Thanks a lot for the availability.
My understanding that you are having issues with the Include statement:
You need to do the following:
1. Create a Data Connector (Folder type) pointing to the folder where you will be keeping your include files. In my case the connector was called CommonScripts
2. Create variable for this Data Connector name. For example:
set ScriptsLibrary = 'lib://CommonScripts (main_user)';
3. Adjust your include statement as following and use it for multiple include files:
$(must_include=[$(ScriptsLibrary)/Logs.qvs]);
$(must_include=[$(ScriptsLibrary)/General_App_Variables.qvs]);
I would suggest to use a "must_include" statement instead of "include". It will throw the loading error if something happens with the include file..
Regards,
Vlad
Thanks! It works
Glad to hear!
VK