Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
smilingjohn
Specialist
Specialist

create variable

Hi all from scrip iam tryin to creat a variable like vdt_pc and this variable should be empty ...

Let vdt_pc = ;

when i reolad iam not able to this variable ...

can some one help me in creating this variable ?

1 Solution

Accepted Solutions
avkeep01
Partner - Specialist
Partner - Specialist

Hi John Roy,

The variable isn't created because it doesn't have any value in it. You should add something after the = sign.

LET vdt_pc = '';

-- updated; remove NULL() that wasn't working

Kind regards,

Anton van Keep

View solution in original post

2 Replies
avkeep01
Partner - Specialist
Partner - Specialist

Hi John Roy,

The variable isn't created because it doesn't have any value in it. You should add something after the = sign.

LET vdt_pc = '';

-- updated; remove NULL() that wasn't working

Kind regards,

Anton van Keep

maxgro
MVP
MVP

this is (under some conditions) a way to remove variables

Let vdt_pc = ;


QlikTip #9: Deleting variables via user-interface, within the load-script or by using macros (transl...