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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
farolito20
Contributor III
Contributor III

Functions in Qlikview

Could I create functions in qlikview like sql, with parameters?

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Look up Sub..end sub in the help file. You can also create functions in vbscript in the macro editor and use them in the script.

From the help file:

// Example 1

sub INCR (I,J)

I = I + 1

exit sub when I < 10

J = J + 1

end sub

call INCR (X,Y)


talk is cheap, supply exceeds demand
farolito20
Contributor III
Contributor III
Author

That's work in the script. How is it in macro editor?