eAzyBI & Current User In Dashboard

Hello everyone - I’m in the process of creating updated and more robust reporting dashboards in Eazy/Jira, but specifically I’m looking for a way to leverage the currentuser() parameter that’s in Jira, in eazyBI reports. I’m wondering if this is something that’s possible? I haven’t seen anything online in the research I’ve done.

If anyone can help, please let me know!

Hi @tfitzgerald

You could try creating a new calculated member in user dimension (for example “Logged by”) using this example:

Aggregate({
    IIF(IsEmpty([Logged By].[User].getMemberByKey(CurrentUser())),
        {},
      [Logged By].[User].getMemberByKey(CurrentUser())
      )}
      )

Then you can use the calculated member in page filter.
The report should show results only for the user who is the current user of the report.

Martins / eazyBI support

Hi Martins,

using the formula from your example throwing a warning:
" Do not use the other dimension Logged By when defining a calculated member in Logged by . Create complex calculations in Measures ."

Is there any other (better) solution (without warning)? :wink:

Thanks.
Jakub

Blockquote

Hi,

In this case, don’t worry about the warning when creating a “current user” member.
And there is no better way than this.

Martins / eazyBI team.