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

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)