Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How to pass value to QV file through command line and how to use it in QV report?
e.g I execute following command line
"C:\Program Files\QlikView\Qv.exe" /l /vvPrintReports=1 /NoSecurity "E:\Reports\Sales.qvw"
Executing this line Sales.qvw opens up, but how to use the value of variable vPrintReports?
I want to check the value of vPrintReports and then accordingly do any action.
Hi,
You make reference to the value of a variable with $()
So if you want to know what's the value of this variable use
$(vPrintReports)
Hi,
You make reference to the value of a variable with $()
So if you want to know what's the value of this variable use
$(vPrintReports)
Hi qlikuser14,
Thanks a lot.. it worked.