Skip to main content
1

Choose the Right Column Type

Nextedy RISKSHEET supports two link column types:Use multiItemLink when a risk item may have multiple upstream or downstream relationships of the same type.
2

Configure the Multi-Item Link Column

Set the column type to multiItemLink in the sheet configuration (risksheet.json, editable via the YAML editor since v25.5.0):
Each linked item appears as a separate entry in the cell with its ID and title displayed in a tooltip.
3

Use typeProperties to Scope the Link

The typeProperties block on a multiItemLink column controls which work items can be linked and how the link is rendered. All six sub-properties are verified against production configs and KB article #48001173761:
When you expect a cell to hold more than one linked work item, you must use multiItemLink. The itemLink type renders only one item per cell and silently drops additional links.
4

Control Item Creation

By default, multiItemLink columns allow users to create new items directly from the cell editor (canCreate defaults to true). To restrict the column to linking existing items only:
The multi-item link editor automatically prevents duplicate items. If you attempt to link the same work item twice, the selection is rejected and you receive a notification.
5

Save New Items to a Specific Document

When creating new items through a multiItemLink column, specify the target project and document on the column’s typeProperties:
New items created from the autocomplete are stored in the specified document. To create items in the current document instead, use createInCurrentDocument: true.
When you click on a multiItemLink cell, an autocomplete editor opens. You can:
  • Type at least 3 characters to search for items by ID or title
  • Select items from the dropdown to add them
  • Remove items by clicking the remove button next to each entry
  • Create new items (if canCreate is true) by typing a new title and selecting the creation option
If you see the message “This item is already linked to selected row,” it means the work item you are trying to link is already present in the cell. Each item can only appear once per cell.

Verification

Save the sheet configuration and reload your risksheet. You should now see the multi-item link column. Click on a cell to open the editor, search for items, and add multiple links. Each linked item should appear as a separate entry within the cell.

See Also

Last modified on July 10, 2026