

Creator III
2017-12-13
08:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Setting a variable to a date (Simple)
Hi Experts,
Need of your help
I am Hard coding this into the script
I am trying to set a variable (vPriceDate) to the default date of 01/02/2017
how would i write this?
Set vPriceDate=????????????
thankyou
10,344 Views
1 Solution
Accepted Solutions

MVP
2017-12-13
08:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 Replies


Specialist
2017-12-13
08:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
set vPriceDate = MakeDate(2017,02,01).
BR
Martin
ECG line chart is the most important visualization in your life.

MVP
2017-12-13
08:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Write in a variable
Set vPriceDate ='01/02/2017';

MVP
2017-12-13
08:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The another best way is
LET vPriceDate = Date('01/02/2017');
