Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

LET variable in edit script

Hello,

A minor technical question.

How come im not allowed to do this in my edit script:

LET vCurrentMonthToDate ='>=$(vMonthStart1) <=$(vDateToday);

But if i make it in variable overview - im allowed!

1 Solution

Accepted Solutions
sushil353
Master II
Master II

try this:

LET vCurrentMonthToDate ='>=$(vMonthStart1) <=$(vDateToday)';

in above a quote is missing

View solution in original post

4 Replies
sushil353
Master II
Master II

try this:

LET vCurrentMonthToDate ='>=$(vMonthStart1) <=$(vDateToday)';

in above a quote is missing

kumarnatarajan
Partner - Specialist
Partner - Specialist

Hi,

Let  key use for calculation

I Think you want to string format. So use below mentioned Syntex:

SET vCurrentMonthToDate ='>=$(vMonthStart1) <=$(vDateToday)';

Not applicable
Author

I have ofcause declared what montstart and vdatetoday is I just didnt wrote it   but thanks

Not applicable
Author

Thanks, im blind!!