Backlog health: count of issues without story points

Hi @camgray,

You can use the dimension “Issue Type” on report pages and specify which issues types should be considered for the report.

Another option is to specify it in the calculation and subtract a tuple of issues with type Epic. The expression might look like this:

--all created issues except for epics
(
  ([Measures].[Issues created],[Issue Type].DefaultMember) -
  ([Measures].[Issues created],[Issue Type].[Epic]) 
) -
--minus all issues with SP except for Epics
(
  [Measures].[Issues with Story Points created],[Issue Type].DefaultMember) -
  ([Measures].[Issues with Story Points created],[Issue Type].[Epic])
)

Best,
Zane / support@eazyBI.com

2 Likes