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: 
Anonymous
Not applicable

How to get the expression used in a variable ?

Let vToday =today();

Value for vToday is assigned in the variable overview editor  as 9/5/2014.

I want the variable definition ie today() .

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

put it between '' so :

Let vToday ='today();'

Anonymous
Not applicable
Author

Or use :

     Set vToday =today();

The QV Help describes the difference between Set & Let.

Not applicable
Author

Use:

Set vToday = today();

Then:

vToday = today();

$(vToday) = 9/5/2014;