Hello. I am trying to create a Sprint report similar to the sample report “Story Points Balance by Sprints”. In our organization, there are some old agile teams and old boards crated by them - due to some reason, we cannot remove them from Jira. So I want to filter them out in the drop down that shows all board names.
I tried by creating Calculated Member using the formula Aggregate([Sprint].[Board1],[Sprint].[Board2]) but nothing shows up. Then upon searching in this site, I got another code
Aggregate(
Order(
Filter({ChildrenSet([Sprint].[Board1]), ChildrenSet([Sprint].[Board2])},
[Sprint].CurrentHierarchyMember.getBoolean(‘Closed’) AND
NOT IsEmpty([Sprint].CurrentHierarchyMember.get(‘Complete date’))),
[Sprint].CurrentHierarchyMember.get(‘Start date’),
BASC
)
)
This works (and I can add all required boards) but data does not show until I select a Sprint in the list. I actually want to just select the board and see the sprints for that board. I have added a filter to show only last 6 closed sprints.
Can you please help? Thanks much in advance.
Regards
JV