Skip to main content
Announcements
Global Transformation Awards! Applications are now open. Submit Entry
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
Luminary Alumni
Luminary Alumni

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
Luminary Alumni
Luminary Alumni

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.