Popular Posts
- Introduction & String Functions in AX 2012
- Convert Functions in ax 2012
- X++ code for Import data from excel using all datatypes in ax 2012
- (no title)
- X++ Code to create Lookup for DialogField in ax 2012 r3
- Date functions in ax 2012
- X++ code to Export data to Excel sheet in ax 2012
- AX Versions and Overview of Microsoft Dynamics AX build numbers
- X++ Code for Creating New Customer and also update Address of the customer
- X++ code for Modify dialog fields in ax 2012
Sunday, July 31, 2016
Thursday, July 28, 2016
Hi Daxer's
Today i come up with a small post but important and useful trick to save time for the developer,when we are exporting data from Ax to Excel sheet,if any record is having data staring with zero (i.e 00021).
Excel will read it as "21" to over come this issue use below code
xlsWorkSheet.cells().range('A:A').numberFormat("@");
xlsWorkSheet.cells().item(row,1).value(strFmt("%1",worker.PersonnelNumber));
Tuesday, July 26, 2016
Thursday, July 14, 2016
Subscribe to:
Posts (Atom)
Export a copy of the standard user acceptance testing (UAT) database
Reference link: Export a copy of the standard user acceptance testing (UAT) database - Finance & Operations | Dynamics 365 | Microsoft ...
-
Dynamics AX Tutorial - X++ Containers Functionality March 08, 2015 http://www.daxerptraining.com/blog/dynamics-ax-tutorial-containers-fun...
-
Hi Daxer's !!! I'm very glad to explore my knowledge on Microsoft Dynamics Ax . -- " Gaining knowledge is the first s...
-
X++ Code to cancel Sales order static void DMSSOCancel(Args _args) { SalesTable salestable; ...