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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

LET Statement value directly assign the load statement

Hi All,

Able to assign the LET statement state value in load statement,

please help me,

For Ex,

LET vEndDate   = num(today(1)+365);    // End at today's date plus 1 year
LET vStartDate = num(today(1)-365);  // Start a year ago.

Load * inline

[

eDate,sDate

vEndDate, vStartDate

];

Regards,

Senthil...

Labels (1)
1 Solution

Accepted Solutions
Not applicable
Author

 

Load * inline

[

eDate,sDate

$(vEndDate), $(vStartDate)

];

View solution in original post

2 Replies
Not applicable
Author

 

Load * inline

[

eDate,sDate

$(vEndDate), $(vStartDate)

];

Not applicable
Author

Hi Yaseen,

Thanking you...

Regards,

Senthil..