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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Is there reusage of script(like modularity) in QlikView

I want to know if any modularity in Qlikview ? like importing library functions in Java

1 Solution

Accepted Solutions
Not applicable
Author

Hi Blessy,

There is something like modularity and the possibility for reusing script code, you could have a lot of script files (*.sql, *.qvs, *.txt) and include them usign the sentence:

$(Include=c:\Proyect\script1.txt)

I hope this help you.

Best regards.

View solution in original post

2 Replies
Not applicable
Author

Hi Blessy,

There is something like modularity and the possibility for reusing script code, you could have a lot of script files (*.sql, *.qvs, *.txt) and include them usign the sentence:

$(Include=c:\Proyect\script1.txt)

I hope this help you.

Best regards.

Not applicable
Author

You can use subroutines in your script

sub MySub(params)

....

end sub

and recall it using call (params)