Hi
I have a problem with a column that is formatted with this:
ultraGrid.DisplayLayout.Bands[bandIndex].Columns[column].Format = "CHF #,##0.00";
The column is displayed and printed correctly (ex. CHF 120.00), but with the Excel Exporter in the excel file I only see: 120
Do I have format the column especially for excel?
best regards
Clay
In your exporter's InitializeColumn event, set e.ExcelFormatStr = e.Column.Format;
it works, thank you very much