Hi,

I have a textarea field which contains multiple paragraphs. Each paragraph has a < br > at the end so that next one will start at newline.

However, when exporting to xls file, the conversion makes it so that each paragraph stays in one cell (each cell is in a new row). The excel sheet then becomes multiple rows as the result.

For example, i have:

para1< br >para2< br >para3

I would expect it becomes:

para1
para2
para3

All at the same cell, but however, it becomes like this:

Row 1: para1
Row 2: para2
Row 3: para3

So 3 cells in 3 different rows.

Hope i have explained clearly enough?

Many thanks