Counting Epics for a Project

Hello,

I was wondering if there was a simple way to count how many Epics belong to each project?

Thank you,
Aleks

Hi Aleks,

In this case, you could create a new calculated measure using tuples.
Try this code:

(
[Measures].[Issues created],
[Issue Type].[Epic]
)

It would calculate the number of issues which has issue type “Epic”.
If you don’t use “Time” dimension that would count all epics ever created (if they are imported in your eazyBI account) for the project you select (if you select the project at all).

Martins / eazyBI support

Thank you Martins that worked great!