Hello,
actually, null values are automatically converted if the ConvertNulls property of the report is set to true. Unfortunately, the automatic conversion is not appropriate to me. For all my reports, I don't want that the null values are set to zero but to String.Empty.
I have already my own Report class but I can't override the ChangeType method, it is static.
How can I do this globally ?
Thanks in advance.
Null values
Null values
Set type of column to object. In this case you will receive all data in original format for specified column.
Thank you.
Thank you.