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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
deepakqlikview_123
Specialist
Specialist

How to manage variables in qlikview

Hi all,

If I have number of variables in a script.Can you please suggest how to manage it.

Thanks,

Deepak

1 Solution

Accepted Solutions
ngulliver
Partner - Specialist III
Partner - Specialist III

Hi, Deepak.

have a look at the Include function in QlikView Help.

This enables you to have a list of variables in a .txt files which you can refer to using the Include statement. This is particularly useful if you keep reusing the same set of variables across multiple applications.

So you could have something  like this $(Include=ColourPalette.txt);

in your script where the ColourPalette.txt contains corporate colours etc.

Regards,

Neil

View solution in original post

4 Replies
Not applicable

If the variables(formulae) can be reused accross several applications you can take it out of the Script and maintain in .qvs file.

deepakqlikview_123
Specialist
Specialist
Author

Hi Ramko,

Thanks for response.Can you please share some example with me so that ,it would be more helpful for me.

Thanks,

Deepak

ngulliver
Partner - Specialist III
Partner - Specialist III

Hi, Deepak.

have a look at the Include function in QlikView Help.

This enables you to have a list of variables in a .txt files which you can refer to using the Include statement. This is particularly useful if you keep reusing the same set of variables across multiple applications.

So you could have something  like this $(Include=ColourPalette.txt);

in your script where the ColourPalette.txt contains corporate colours etc.

Regards,

Neil

deepakqlikview_123
Specialist
Specialist
Author

Thanks Neil