I have an array field in my material table and define it with comma like below. But when I export the data to Excel, the array values are separated to different column cells. How can I make all the array values to enter one column cell in excel?
{ title: 'Array', field: 'array', editable: 'never', filtering: false,
render: rowData => `${rowData.array.join(", ")}`
}