web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

How to increment date 21/01/2015 automatically X++

(0) ShareShare
ReportReport
Posted on by 10,280

I need to insert that date like

21/02/2015

21/03/2015

*This post is locked for comments

I have the same question (0)
  • Community Member Profile Picture
    on at

    you can use nextmth function

    TransDate   t = mkdate(1,1,2015);

    t = nextmth(t);

  • Bilal Issa Profile Picture
    4,370 on at

    Hi ,

    I agree with Xavier and you can also use dateMthFwd(initialStartDate, 1);

    Regards,

    Bilal

  • Suggested answer
    PA-22040759-0 Profile Picture
    6,194 on at

    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);

       print d;

       d = nextMth(d);

       print 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);

       pause;

    }

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.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Martin Dráb Profile Picture

Martin Dráb 4 Most Valuable Professional

#1
Priya_K Profile Picture

Priya_K 4

#3
MyDynamicsNAV Profile Picture

MyDynamicsNAV 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans