Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Script file as a variable value

Hello,

I am new to qlikview scripting, and I am going through an already built QVW to understand all the components and scripts. In one of the script files I see a statement 'Let vProperty = load_property.qvs'

I understand the difference between Let and Set, but I am struggling to understand what happens when you 'Let' a variable value, a script file? I've never seen anything similar in other scripting files before.

Thank You,

1 Solution

Accepted Solutions
Chanty4u
MVP
MVP

nothing vill be happen

the variable will create a value with

"filename.qvs"

u can chk that in cntrl+alt+V    variable overview

View solution in original post

5 Replies
Chanty4u
MVP
MVP

nothing vill be happen

the variable will create a value with

"filename.qvs"

u can chk that in cntrl+alt+V    variable overview

Chanty4u
MVP
MVP

for more info

Variables

Gysbert_Wassenaar

Let will evaluate the expression on the right side of the =. Set simply makes the string on the right side of the = character the value of the variable.

SET vX =3+2; // vX contains the string '3+2'

LET vX =3+2; // vX contains the value 5


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks, Ctrl+Alt+V was very helpful understand what exactly is going on.

Chanty4u
MVP
MVP

welcome bro.

Best

Chanty