Re: [Axapta-Knowledge-Village] Importing and exporting of data from and to the Excel

2008-06-19 Thread Deepankar Sahdev
Hi, To import data from excel use this code static void importformexcel(Args _args) { SysExcelApplication excel; SysExcelWorkbooks books; SysExcelWorkbook book; SysExcelWorkSheets sheets; SysExcelWorkSheet sheet; str _filepath = "C:\\Test.xls"; loginProperty log

[Axapta-Knowledge-Village] Importing and exporting of data from and to the Excel

2008-06-17 Thread venki_armold
Hi, I want to export data from a table to excel file and after doing modifications in the excel i want to import the file back to axapta. I want this using X++ code as I have already worked with the "import excel" using excel template.