Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to pass value to QV file through command line and how to use it in QV report?

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.

1 Solution

Accepted Solutions
jvitantonio
Specialist III
Specialist III

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)

View solution in original post

2 Replies
jvitantonio
Specialist III
Specialist III

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)

Not applicable
Author

Hi qlikuser14,

Thanks a lot.. it worked.