Personalizing Report for Current User

Hello! I am currently creating an EazyBI report that will automatically filter out tickets that are assigned to people when immediately accessing the board, so whoever the current user is. For example, when I click on the board, I only want to see my tickets and the number of tickets in each of their respective statuses.

I currently have in my rows a custom field of “Assignee” which include all people in my report. In columns, I have “Status” which pulls in the number of tickets under each status.

How can I please have my report filter out results just for the current user?

Hi ,
Welcome to the eazyBI community!

You can check out this community post: eAzyBI & Current User In Dashboard and create a similar calculated member in Assignee dimension (instead of Logged by) using folowing formula:

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

I hope this helps!

Kindly,
Ilze