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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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...

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..