"Assigned to @username" report in EazyBI

Hi everyone,

I wanted to check if there is a way to create a report in EazyBI similar to "Assigned to me " of Jira. Attached is the Jira plugin/gadget screenshot:

Hi @ankitraj

Thanks for your question!

In eazyBI, you could define a new calculated measure (learn more here -
Calculated measures and members) that will count all unresolved issues that are assigned to the user that has logged in to the eazyBI. You can learn more about CurrentUser function here - CurrentUser

(
[Measures].[Issues created],
[Resolution].[(unresolved)],
[Assignee].[User].GetMemberByKey(CurrentUser())
)

If you’re looking for something else, please let me know!

Best wishes,

Elita from support@eazybi.com

1 Like

thanks … I was able to get the desired result by using labels but I will keep this in mind from next time

1 Like