How to sum up Epic Links

Hello,

I am trying to add a new calculated member in the Epic Link dimension that will show only some epic links.

Example: Rows - Issue Type

Columns: Epic Link - PT-66229 + PT-66231 + PT-66227 , all in one new calculated members.

I tried:

[Epic Link].[‘PT-64058’]+[Epic Link].[‘PT-64060’]

or

[Epic Link].[PT-64058]+[Epic Link].[PT-64060]

but they do not come up with any results.

Also, I would need to know how to get issues without epic link summed up too.

Please let me know if you have any suggestions!

Thank you!

Hi,

Does anyone have any suggestions?

Thank you!

Thank you @roberts.cacus

1 Like

Hi @arama_mihai ,

One other approach I found out about just recently is to use only the Epic links issue key. That could be useful if there is a chance that the Epic issues summary changes. Please see the code below:

Aggregate(
  {
  [Epic Link].[Epic].getmemberbykey("key-1"),
  [Epic Link].[Epic].getmemberbykey("key-2")
  }
)

Kind regards,
Robert / eazyBI support

Thanks, that’s very helpful!