Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Hi,
set vPriceDate = MakeDate(2017,02,01).
BR
Martin
Write in a variable
Set vPriceDate ='01/02/2017';
The another best way is
LET vPriceDate = Date('01/02/2017');