Group by area path and type
Given a list of user stories we group stories by area path and then by work item type.
Template
## Area Path:
### Type:
-
Work items
Id | Title | AreaPath | WorkItemType |
---|---|---|---|
1 | Item 1 | Backend | User Story |
2 | Item 2 | Frontend | User Story |
3 | Item 3 | Frontend | Bug |
Result
Area Path: Backend
Type: User Story
- Item 1
Area Path: Frontend
Type: User Story
- Item 2
Type: Bug
- Item 3