Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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;