Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Reuse Load Script in multiple dashboards

I have a few dashboards/QVDs, and there is some of the load script that I reuse in each. If make a change I have to remember to open each Dashboard and update each script.  Is there I way I can have this part of the load script saved somewhere and point to it, so I only have to maintiain 1 copy?

1 Solution

Accepted Solutions
swuehl
MVP
MVP

If it's about including only some code snippet, not the complete data model, check out HELP -> system variables -> $(include=filename)

View solution in original post

3 Replies
swuehl
MVP
MVP

If it's about including only some code snippet, not the complete data model, check out HELP -> system variables -> $(include=filename)

giakoum
Partner - Master II
Partner - Master II

You could also use files to store specific parts of your code and reuse them in all qvw, for example :

$(Include=..\qvc_runtime\qvc.qvs)

Rob Wunderlich has done that in an excellent way :

http://code.google.com/p/qlikview-components/

Not applicable
Author

Awesome, thank you all for the solutions!