When a report is exported to Excel, it generally works fine. However, here is one problem that I am encountering. In some textbox field, I have CanGrow set as True. Therefore, it the data is longer than the allowed field, it will print to next line which is fine. The problem comes when this is exported to Excel. If the field is exported Excel, the textbox occupies more than one row(merged row) instead of the whole text should be in one row with longer field. This prevent the user from sorting properly form Excel.
For example, if it should print, "Hello world, this is me", In textbox it will print as follow.
|Hello World|
|This is me |
In Excel, it will print,
ROW A |Hello World|
ROW B |This is me |
I would like it to print
ROW A |Hello World|
|This is me |
ROW B
How can this be fixed?
For example, if it should print, "Hello world, this is me", In textbox it will print as follow.
|Hello World|
|This is me |
In Excel, it will print,
ROW A |Hello World|
ROW B |This is me |
I would like it to print
ROW A |Hello World|
|This is me |
ROW B
How can this be fixed?