Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
ngulliver
Partner - Specialist III
Partner - Specialist III

Using Variables in Report Headers - QV11. Is it possible ?

I have a quick question:

I know that QV isn't really a reporting tool but I have a QV11 project with report heavy requirements. I would like to know if it is possible to use variables in the header or footer of reports and if so, how ?

Many thanks.

1 Solution

Accepted Solutions
Not applicable

Hi together,

using QlikView variables in the header / footer section of a report is quite easy:

just put '=<name of variable>' in the proper section of the report properties

report_property_with_variable.PNG

If you're using VBA macros you can manipulate your variable (in the example above it is named 'vHeading') with the following command:

   ActiveDocument.Variables("vHeading").SetContent "my desired variable value to be shown in report header" true

View solution in original post

2 Replies
Not applicable

I'd like to know how to do this as well, so if anyone's got a method, I'd appreciate it.

Not applicable

Hi together,

using QlikView variables in the header / footer section of a report is quite easy:

just put '=<name of variable>' in the proper section of the report properties

report_property_with_variable.PNG

If you're using VBA macros you can manipulate your variable (in the example above it is named 'vHeading') with the following command:

   ActiveDocument.Variables("vHeading").SetContent "my desired variable value to be shown in report header" true