Posts

Showing posts with the label AX Global Method

AX 2012 - roundDownDec method syntax and example

Hi Folks, Please find below code for roundDownDec method in AX 2012. Global::roundDownDec Method [AX 2012] Syntax client server public static real roundDownDec(real value, int numDec) Run On Called Parameters value Type: real numDec Type: int Example: // Code written by Chirag Gupta // Summary: This code will round the value till two decimals; // You can change the roundDownDec(_args1, _args2) second argument according to your need. server static void roundDownDecExample(Args _args) {     real r = 37563.5343100000000000;     real a;     a = roundDownDec(r, 2);     r = a;     info(strFmt("%1", r)); } // Output for the above code will be 37563.53 Author: Chirag Gupta Microsoft Dynamics 365 AX Technical Consultant at IBM Bangalore Date: 17-Sep-2019 Happy Learning !!