I am using NPOI to export some data to excel, inside a cell I am inserting 3 items with 2 lines breaks so I am adjusting the row height accordingly:
var row = sheet.CreateRow(1);
row.Height = 900;
var questionString = "Question 1" + Environment.NewLine + "Question 2" + Environment.NewLine;
When exporting the excel the row height is adjusted, however the contents of the cell are clustered unless I double click on the cell.
Result when exporting:
Result after double clicking on the cells: