hello .I have a question about exporting a grid to excel
I have a grid with one numeric column(INT 32) and I want to show the content of this cell with comma (Like 10,000) and when it will export to excel it shows exactly like the content (I mean 10,000 in grid and in excel both) And the main part is I want it will be numeric cell in excel not string cell.
I have added this parts to column : DataType="System.Int32" DataFormatString="{0:n0}
but after exporting, this cell format is not numeric .it is string and I should change it to numeric cell manualy . I want it in numeric format .
Thanks in Advanced