Skip to main content

Notifications

Announcements

No record found.

Microsoft Dynamics CRM (Archived)

How to calculate date using javascript

Posted on by 403
How to increase startbilling date with value request start billing date?


Thanks,
tanya.PNG

*This post is locked for comments

  • Verified answer
    Community Member Profile Picture
    Community Member Microsoft Employee on at
    RE: How to calculate date using javascript

    Hi Ferdiansah ,

    you need to insert a javascript on entity form with the following code (replace fake attribute name with your attribute names).

    Each time the date or the "add days" fields change, the script are executed:

    function OnLoad()
    {
    	Xrm.Page.getAttribute('new_datefrom').addOnChange(DateOrDaysOnChange);
    	Xrm.Page.getAttribute('new_adddays').addOnChange(DateOrDaysOnChange);
    }
    
    function DateOrDaysOnChange()
    {
    	var datefrom = Xrm.Page.getAttribute('new_datefrom').getValue();
    	var adddays = Xrm.Page.getAttribute('new_adddays').getValue();
    	var newdate = new Date(datefrom);
    	newdate.setDate(newdate.getDate() + adddays);
    	Xrm.Page.getAttribute('new_dateto').setValue(newdate);
    }

    Please let me know if you solve.

    If you found the answer helpful, please mark as Verified 

    Join my network on LinkedIn      Follow me on Twitter 

    Thank You & Best Regards

    Francesco Picchi

    Microsoft Dynamics CRM Consultant, Bologna+Milano, ITALY

    Independent Contractor

    http://www.francescopicchi.com

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

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Suggested Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,280 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,214 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans