Issue reports created more than 3 days ago

Hi,

I need a report that brings me all issues created greater than 3 days from the current date, can you help me?

Hi @DEGAN

You could create a new user-defined calculated measure using this formula.

(
  [Time].CurrentHierarchy.DefaultMember,
  [Measures].[Issues created]
)
-
Aggregate(
    [Time].[Day].DateMembersBetween('3 days ago', 'today'),
    [Measures].[Issues created]
)

It will subtract from all issues those that were created in the last 3 days

See similar discussions here:

Martins / eazyBI support