
Anonymous
Not applicable
2014-09-05
02:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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() .
472 Views
3 Replies


Partner - Champion III
2014-09-05
02:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
put it between '' so :
Let vToday ='today();'
418 Views

Anonymous
Not applicable
2014-09-05
02:59 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Or use :
Set vToday =today();
The QV Help describes the difference between Set & Let.
418 Views

Not applicable
2014-09-05
03:02 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use:
Set vToday = today();
Then:
vToday = today();
$(vToday) = 9/5/2014;
418 Views
