I have created a column called "Modality" that is an Enum. Each number represents a value; for example "value =1" represents a string that is "Number One". When I convert it to excel and download it, in the column "Modality", I expect to see Number One, but I see only a number (1).
When I download the excel in the column "Modality", I expect to see the value that converts with the component DataTypeProvider. In this example I convert 1 (Number) in a string "Number One".
Link to the example that reproduces the issue: <https://codesandbox.io/s/goofy-nobel-iwyhr>

Hi @lucas-bustos ,
This behavior is expected: the row values are exported as-is. Please use the customizeCell function to change an exported value.
Here's an updated codesandbox.
This thread has been automatically locked since it is closed and there has not been any recent activity. Please open a new issue for related bugs or feature requests.
Most helpful comment
Hi @lucas-bustos ,
This behavior is expected: the row values are exported as-is. Please use the customizeCell function to change an exported value.
Here's an updated codesandbox.