Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
If I have number of variables in a script.Can you please suggest how to manage it.
Thanks,
Deepak
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
If the variables(formulae) can be reused accross several applications you can take it out of the Script and maintain in .qvs file.
Hi Ramko,
Thanks for response.Can you please share some example with me so that ,it would be more helpful for me.
Thanks,
Deepak
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
Thanks Neil