I have a TCxGrid (DevExpress) with a TCxGridDBBandedTableView. This view has 2 bands, and each band has its columns.
I use the ExportGridToExcel (from DevExpress's cxGridExportLink unit), to expot the grid to excel. Example:
Grid Configuration
How the excel is being generated:
How I would like it to be:
Is there a way I could configure it not to consider "bands separators" as empty columns when generating excel?
I figured out my mistake. The problem is that I had these 2 bands, and my second band had FixedKind defined with fkLeft. I changed it to fkNone, and edited his Position.ColIndex property to zero (because I wanted it to be the first band). Thanks!