I have a RadGrid created dynamically in code behind and when I try to export to Excel I get the following error:
We found a problem with this formula. Try clicking Insert Function on the Formulas tab to fix it.\n\nNot trying to type a formula? When the first character is an equal (=) or minus (-) sign, RadSpreadsheet thinks it is a formula. For example, when you type =1+1 the cell shows 2.Here is the export code:
protected void ibtnExportToExcel_Click(object sender, ImageClickEventArgs e) { rgWorkItems.DataSource = Session["GridTable"]; rgWorkItems.Rebind(); rgWorkItems.ExportSettings.Excel.Format = GridExcelExportFormat.Xlsx; rgWorkItems.ExportSettings.IgnorePaging = true; rgWorkItems.ExportSettings.ExportOnlyData = true; rgWorkItems.ExportSettings.OpenInNewWindow = true; rgWorkItems.MasterTableView.ExportToExcel(); }I do not have any of the data that starts with = in my grid.
If I change the ExportToExcel to ExportToCSV it works just fine.
How can I resolve this?