Is there a simple way to add a couple of rows to an excel spreadsheet from a simple 1 band grid export.I want to add the title of the report and date created above the report data.Currently i am exporting like this
Dim UltraGridExcelExporter1 As New ExcelExport.UltraGridExcelExporter
UltraGridExcelExporter1.Export(_grid, .FileName)
Hello,
I just wanted to know if you were able to solve your issue based on Mike's suggestions or you still need help? Just let me know. Thank you.
Sincerely,DimiDeveloper Support Engineer, MCPD Infragistics, Inc.
Hi,
Can you help me about this issue.
I want to add title of report and date of report.
I also exporting like this;
UltraGridExcelExporter exporter = new UltraGridExcelExporter();
exporter.Export(this.ultraGrid1, sfd.FileName, Infragistics.Excel.WorkbookFormat.Excel97To2003);
Sincerely,
Yavuz
Hi Yavuz,
What part of this are you having difficulty with? Did you look at the sample I referenced above?
You just need to handle the BeginExport event and you can insert any data you want.