Hello
I have a data table and I export it to excel by
dataSheet.Cells.ImportDataTable(dtData, true, 0, 0, true, true);
The datatable values with percentage (eg 17.31%) is displayed in Excel as 0.1731. How do I format it to be displayed as 17.31%.
Thanks.
Kit