Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
The below variable gives '1160801' which is century format and actual date is '08/01/2016'.
But i need the below variable which gives the date '1160828' wchi means '08/28/2016'.
Let CurrentyearYesterday=1&date(date(monthstart(today()),'MM/DD/YYYY'),'YYMMDD');
Thanks..
Hi,
Got it..
Let CurrentyearYesterday=1&date(date((today())-1,'MM/DD/YYYY'),'YYMMDD');
Thanks,,
Hi,
Got it i forget there is an monthstart in the variable replacing monthstart with month fixed the issue.
Let CurrentyearYesterday=1&date(date(month(today()-1),'MM/DD/YYYY'),'YYMMDD');
Thanks..
Oh am sorry..
The above isn't right..
Please check it once..
Thanks...
Hi,
Got it..
Let CurrentyearYesterday=1&date(date((today())-1,'MM/DD/YYYY'),'YYMMDD');
Thanks,,
Hi Naresh,
Try this,
Let CurrentyearYesterday =(Year((Today()))-1900) & Num(Month(Today()),'00') & Num(Day(Today()-1),'00') ;
Thanks... Nagraj for response and the issue is resolved as per the previous post..
I'm a bit late. Just thought to share my idea.