Hello Team
i used Gridview excel export to some xxxx.xls , Export is done, but instead of exporting the gridview columns to excel columns, it is exporting everything to one single excel column, is there any setting to be done with the gridview,
Can you please help me
my Code is
var exporter = new ExportToExcelML(this.radgridview1);
string fileName = "C:\\ACDV.xls";
exporter.SheetName = "Sheet";
exporter.SheetMaxRows = ExcelMaxRows._65536 ;
exporter.RunExport(fileName);
the same export function to .csv is working fine, but the data is coming in enclosed quotes, which exported to database table showing data in enclosed quotes something like
"1" "2.5" "3" "5" "6"
"2" "7.1" "0" "6" "7"
i need data without enclosed quotes, there is an option in ajax gridview with option enclosedquotes=true/false but in winforms rad gridview there is no such option , please help me in achieving either of one method stated above
Regards
Lakshmi
i used Gridview excel export to some xxxx.xls , Export is done, but instead of exporting the gridview columns to excel columns, it is exporting everything to one single excel column, is there any setting to be done with the gridview,
Can you please help me
my Code is
var exporter = new ExportToExcelML(this.radgridview1);
string fileName = "C:\\ACDV.xls";
exporter.SheetName = "Sheet";
exporter.SheetMaxRows = ExcelMaxRows._65536 ;
exporter.RunExport(fileName);
the same export function to .csv is working fine, but the data is coming in enclosed quotes, which exported to database table showing data in enclosed quotes something like
"1" "2.5" "3" "5" "6"
"2" "7.1" "0" "6" "7"
i need data without enclosed quotes, there is an option in ajax gridview with option enclosedquotes=true/false but in winforms rad gridview there is no such option , please help me in achieving either of one method stated above
Regards
Lakshmi