Get list of unestimated items per issue type

Hi, @nikbats,

No default measure counts Issues with or without an Original estimate. You could create a custom calculated measure that sums the issues where the Original estimate is empty. Please try the following:

Sum(
  Filter(Descendants(
    [Issue].CurrentMember, [Issue].[Issue]
  ), 
  IsEmpty([Measures].[Original estimated hours])),
  [Measures].[Issues created]
)

Lauma / support@eazybi.com