When to Use This
You may have separate columns for different upstream or downstream link types (e.g., System Requirements, Software Requirements, Hazards) and want to display all links together in one column. This approach reduces horizontal scrolling and presents a unified view of all related items.Configuration Steps
1. Define the Consolidation Formula
Add a formula to yourrisksheet.json that concatenates the link values from each source column. The formula checks each link column and combines non-empty values with line breaks:
sysreq, swreq, and hazard with your actual column IDs.
2. Configure the Cell Decorator
Add a cell decorator to render the HTML properly (otherwise links appear as raw HTML text):3. Add the Consolidated Column
Define the column that will display the combined links:How It Works
| Column | Type | Example Value |
|---|---|---|
| Sys Req (source) | itemLink | SYS-001 |
| SW Req (source) | itemLink | SW-045, SW-046 |
| Hazard (source) | itemLink | HAZ-12 |
| Result (calculated) | formula | SYS-001, SW-045, SW-046, HAZ-12 |
Common Pitfalls
Source Columns Must Exist
Source Columns Must Exist
If a source column ID referenced in your formula doesn’t exist, the entire formula fails silently. Verify all column IDs are spelled correctly and exist in your configuration.
Consolidated columns are calculated (formula-based), so they are always read-only. Users must edit the source link columns to change values.
Verification
After saving your configuration and refreshing the Risksheet:- The consolidated column displays all link IDs from source columns
- Each link appears on a separate line
- Links are clickable and navigate to the referenced work items
- Empty source columns are skipped (no blank lines appear)
See Also
- Show Multiple Linked Items - Configure multiItemLink columns
- Configure Upstream Traceability Columns - Set up source link columns
- Customize Link Rendering - Add custom formatting to link display
- Configure Calculated Columns - Learn formula syntax and patterns
Sources
Sources
KB Articles
- Collect multiple link columns into one column
- Configure upstream column to show multiple linked work items
- Display Sub-columns for multiItemLink columns
- Customize the way Item Links are rendered
CustomMergeManager.tsGridUndoStack.tsSheetConstants.tsCellEditorFormatter.tsExportToExcel.ts