SLA dashboard filtering by created date

Hi @Cefo,

I just found that your question has gone unanswered for some time. Sorry about that!

The SLA measures are grouped by the SLA cycle completed date. You can create a new calculation that sums them by the Issue creation date. Please try the following for Time from creation to resolved - Met (give it a different name, e.g., Time from creation to resolved - Met by created date)

Sum(
  Filter(
    Descendants([Issue].CurrentMember, [Issue].[Issue]),
    [Measures].[Issues created] > 0 ),
  ([Measures].[Time from creation to resolved - Met], 
  [Time].CurrentHierarchy.DefaultMember)
)

Lauma / support@eazybi.com