Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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

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?