Count how many issues's duedate is current day

I just want to create a burndown chart of issue resolve trend (plan vs actual).
So how can I get the count of issuse whose duedate is current day?

Thanks very much.

I found it. I used [Measures].[Issues with due date], so I got the count of issues whose duedate is current day.

Now I trying to get the total count of all issue that been create at the last day, so I can draw a burndown chart.Still have no idea. Does there any advice?

Thanks

Hi!

To get the number of issues with creation date ‘yesterday’, you can create the following tuple:

(
  [Time].[Day].CurrentDateMember.PrevMember,
  [Measures].[Issues created]
)

Lauma / support@eazybi.com