Excel export - nullable columns

The excel export feature is nice.
I had problems with nullable columns though, I slightly modified the ExportController.ToExcel code to make it more robust :

                foreach (var column in columns)
                {
                    var value = GetValue(item, column.Key);
                    //Was
                    //var stringValue = value.ToString();
                    var stringValue = value?.ToString() ?? "";
1 Like

Thanks @Stef42! It will be included in the next update!