Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mjperreault
Creator
Creator

Escape Dollar Sign Expansion

I have a need to display a string of text Incuding $("LoadingIcon") in a Text Box however when no matter what I try this part of the string is returning null because of Dollar Sign Expansion. I have read this community article but it does not seem to be working for me.

https://community.qlik.com/t5/QlikView-App-Development/Stop-Dollar-Sign-Expansion-in-the-script-Esca...

In my script I have 

SET A = $("LoadingIcon") ;

 

However this just returns NULL.

 

Does anyone have any ideas?

 

Thanks,
Mark

Labels (2)
1 Solution

Accepted Solutions
Lisa_P
Employee
Employee

I got the answer from the other article:

set vString = ~("LoadingIcon");

set vA = "=replace([vString],'~','$')";

 

View solution in original post

1 Reply
Lisa_P
Employee
Employee

I got the answer from the other article:

set vString = ~("LoadingIcon");

set vA = "=replace([vString],'~','$')";