Identify the Error
Multi-item column errors manifest as:- A relationship column shows only one related item instead of multiple
- The cell editor opens as a single-value picker instead of a multi-item picker
- Saving linked work items fails or creates incorrect associations
- The second linked entity type column displays blank cells
Step 1: Set multiItem: true on the Column
The most common cause is a missing multiItem property in the sheet configuration. When a column represents a collection (one-to-many or many-to-many relationship), you must explicitly set multiItem: true:
Step 2: Verify the Relationship Cardinality
ThemultiItem property should align with the relationship cardinality in your domain model:
| Cardinality | multiItem Needed? | Display Behavior |
|---|---|---|
one-to-one | No | Single-value cell |
many-to-one | No | Single-value cell |
one-to-many | Yes | Multiple items with separators |
many-to-many | Yes | Multiple items with linking mode |
relationships section:
Step 3: Check the Expansion Path
Multi-item columns require the corresponding expansion path to be defined in thesources section. Without expansion, the related entities will not load:
Step 4: Configure the Display Property
Multi-item cells display a list of related items. Control what text appears for each item using thedisplay property:
display values include id, title, and titleOrName.
Step 5: Multi-Item Editing Behavior
WhenmultiItem: true is set correctly, double-clicking a multi-item cell opens an autocomplete editor with a dropdown for selecting additional items. Each item displays with a separator and an external link icon for navigation.
Multi-item columns also support:
- Filtering: Click the filter icon to filter by item combinations
- Linking mode: For many-to-many relationships, use linking mode to create associations
Verification
After applying the fix:- Save the sheet configuration
- Reload the powersheet document
- You should now see multiple related items displayed in the column, separated by semicolons
- Double-click the cell to verify the multi-item picker opens with autocomplete functionality
See Also
- Configure Multi-Item Column — full multi-item setup
- Configure Many-to-Many Relationships — relationship setup
- Configure Sources — expansion path configuration
- Incremental Configuration Approach — build complexity gradually
Sources: powersheet.yaml, multi-item-picker.spec.ts, permissions-levels.template.yaml, ticket insights
Sources
Sources
Support TicketsSource Code
powersheet.yamlprod-powersheet-src/com.nextedy.powersheet.client/ltc-repo/packages/sheet/commands/exportXlsx.tsxprod-powersheet-src/com.nextedy.powersheet.client/cypress/fixtures/configurations/permissions-levels.template.yamlprod-powersheet-src/com.nextedy.powersheet.client/ltc-repo/cypress/e2e/Sheet/multi-item-picker.spec.tsprod-powersheet-src/com.nextedy.powersheet.client/ltc-repo/packages/sheet/commands/filter-items-for-review.ts