I have an SSRS report that has a Comments field where there's enough text to span multiple rows per record. It renders fine in the ASP.Net ReportViewer control, but when it's exported the formatting can be different. Exporting to Word it looks fantastic. But exporting to Excel and PDF, the row height for each record is never increased beyond the default, so the text just gets truncated. In Excel I can go in and double-click on individual or multiple row heights to fix them, but this is an extra step we don't want.
Since there is no "exported" event coming from the ReportViewer, how can I fix it so that it exports/formats correctly in Excel? Is there a way to do it inside the ReportViewer at render-time, or do I need to think about producing the Excel file and then going into it to change it with VBA code after-the-fact? Any ideas?