- The table body has a fixed total height (e.g., enough space for ~10 lines)
- Each row height is dynamic — it wraps and grows if the text is long
- The remaining space after all data rows must be filled with blank rows so the table body always reaches the fixed height
- All rows must be tight/compact with no extra gaps between them
- CanGrow = false on data rows
- Inject shadow/dummy records via DP preprocessing to pad up to a fixed row count
1. Gap inconsistency — When real rows grow due to long text, the total height of real rows + dummy rows often exceeds or doesn't exactly match the fixed body height, causing visible spacing gaps or page overflow
2. Can't predict row height at preprocessing time — The actual rendered height of a row depends on font, column width, and text length, which is only known at render time (not at DP/X++ level)
3. Dummy row height miscalculation — If real rows consume more vertical space due to wrapping, the dummy rows need to shrink accordingly, but SSRS has no native mechanism for this
2. Has anyone handled this with a custom RDL rendering approach or post-processing?
3. Would switching to a Word template merge (via Document Management in D365FO) be a more reliable solution for strict layout fidelity like this?
4. Any experience with third-party report engines (e.g., FastReport.NET embedded in D365FO, or generating PDF directly from X++) that handle this kind of layout better than SSRS?

Report
All responses (
Answers (