Report with Issues created and resolved in one formula

Hi all!
Just one question,
is there any way to create a custom formula to show these both measures at once?
I created the below one.
is that correct, isn’t it?

However, when we use it for all of the projects, I receive an “out of memory” error.

so, basically having all of the different issues either created or resolved within one quarter.

Or is there any way to make it works as performance issues we receive? (via javascript or whatever)

NonZero(
  Count(
    Filter(
      Descendants([Issue].CurrentHierarchyMember,[Issue].[Issue]),
      [Measures].[Issues created count] > 0 OR 
      [Measures].[Issues resolved count] > 0
     
      AND 
          (
          DateInPeriod(
            [Issue].CurrentHierarchyMember.get('Created at'),
            [Time].CurrentHierarchyMember)
          OR 
          DateInPeriod(
            [Issue].CurrentHierarchyMember.get('Resolved at'),
            [Time].CurrentHierarchyMember)
          ) AND  (
        [Measures].[Issue resolution] = 'Fixed' OR 
        [Measures].[Issue resolution] = 'Done' OR 
        [Measures].[Issue resolution] = 'Configuration' OR 
        [Measures].[Issue resolution] = 'Ready' OR 
        [Measures].[Issue resolution] = 'Unresolved' 
      ) 
    )
  )
)

I discarded this:

( [Measures].[Issues created count], 
  [Time].CurrentHierarchyMember), 

( [Measures].[Issues resolved count], 
  [Time].CurrentHierarchyMember)

Many thanks!