Export performance depends on multiple data structure characteristics:Unlike initial page load performance (primarily driven by row count), export performance degrades most significantly with high linked-item column counts and formula-heavy configurations.
Before version 24.5.1, calculated column values could appear inconsistently in exports if work items were imported without saving calculated values to Polarion. The data synchronization feature introduced in 24.5.1 ensures formula values persist correctly between Nextedy RISKSHEET and Polarion for reliable exports.
Different column types impose varying export overhead:
Column Type
Export Cost
Reason
Basic fields (text, enum)
Low
Direct value export
Calculated columns
Medium
Formula re-evaluation
Item link columns
Medium
Property binding resolution
Multi-item link columns
High
JSON parsing + deduplication
Server render columns
Very High
HTML processing + text extraction
Nested linked item columns
Very High
Recursive property lookups
Support tickets show that linked-item column density (not raw data volume) is the primary driver of export performance degradation, especially with concurrent multi-user access during export operations.
Multi-item link columns parse JSON and resolve multiple linked items during export. Consolidate or remove redundant link columns:
Copy
Ask AI
{ "columns": [ // Keep only essential linked item columns for export {"type": "multiItemLink:requirement", "binding": "requirements"}, // Remove or hide secondary link columns: // {"type": "multiItemLink:testcase", "binding": "testcases"} ]}
For migration scenarios where work items are imported without calculated field values, ensure you’re running version 24.5.1 or later. This version includes data synchronization that persists formula values to Polarion, ensuring consistent export behavior.
Complex page layouts with merged cells, multi-page items, and repeated headers increase PDF generation time:Baseline Configuration impacts PDF pagination:
Baselines are not automatically included in PDF exports. If you need baseline data in exports, configure baseline filtering in your risksheetPdfExport.vm Velocity template using document path or ID filters. Missing baseline configuration can cause export failures or timeouts.
Excel export preserves cell background colors and text colors from Nextedy RISKSHEET. For very large exports, this styling overhead can be significant.Currently, there’s no configuration to disable style preservation, but you can simplify cell styling in your configuration to reduce export complexity:
Support engineers recommend splitting risksheets by FMEA type or subsystem to reduce column count and linked-item load rather than attempting to optimize a single monolithic sheet beyond ~500 items with high linked-item density.
Measure Baseline: Record export duration before optimization
Apply Changes: Implement column hiding, view simplification, or sheet splitting
Re-Test Export: Measure new export duration for same dataset
Calculate Improvement: Compare before/after times
Verify Content: Ensure exported content remains complete and accurate
You should see export times reduced by 30-70% depending on optimization strategies applied. If performance remains unacceptable (> 2 minutes for < 500 items), contact Nextedy support with server configuration details and sample export data structure for investigation.