Notifications
Announcements
No record found.
I need to insert that date like
21/02/2015
21/03/2015
*This post is locked for comments
you can use nextmth function
TransDate t = mkdate(1,1,2015);
t = nextmth(t);
Hi ,
I agree with Xavier and you can also use dateMthFwd(initialStartDate, 1);
Regards,
Bilal
nextMth will wack the date after hitting uneven months.
Try this, which will change the date from the 31th to the 29th in february, but also after hitting february:
static void TestNextMth(Args _args)
{
date d = nextMth(31\12\1995);
print d;
d = nextMth(d);
pause;
}
You can also use .NET System.DateTime.AddMonth.
dateMthFwd and System.DateTime.AddMonth gets it right:
static void TestDateMthFwd(Args _args){ date d = mkDate(31, 12, 1995); print dateMthFwd(d, 1); print dateMthFwd(d, 2); print dateMthFwd(d, 3); pause;}
static void TestAddMonths(Args _args)
System.DateTime dateTime = new System.DateTime(1995, 12, 31);
print dateTime.AddMonths(1);
print dateTime.AddMonths(2);
print dateTime.AddMonths(3);
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
As AI tools become more common, we’re introducing a Responsible AI Use…
We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Martin Dráb 4 Most Valuable Professional
Priya_K 4
MyDynamicsNAV 2