Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
we have made a connection string in include statement like
$include=....manoj\conncectionstring.cfg;
after writing this we have one more statement like
call full_space=('manoj')
HOW IT WORKS AND WHAT IT GIVES?
Have a look for CALL in the help file.
The call control statement calls a subroutine which must be defined by a previous sub statement.
The syntax is:
call name ( [ paramlist ])
Hi,
$Include function can call a file from outside qlikview.
below statement is not clear to me.
call full_space=('manoj')
if possible pls provide full script.
Regards
simple what is use of call statement in qlikview?
Have a look for CALL in the help file.
The call control statement calls a subroutine which must be defined by a previous sub statement.
The syntax is:
call name ( [ paramlist ])
Hi
Call is used when load script sub is called.
I think in below format
call script_name;
but I do not understand the use of = in your script [ call full_space=('manoj')].
Regards,
Pooja
I think the = is an error.
It should be
call Full_space('manoj')