Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added 3i


Excerpt
hiddentrue

learn how to display PowerBI dashboards in Projector

...

Info

Projector allows you to embed PowerBI dashboards in the following three areas.

This help page shows you how to configure a PowerBI dashboard in one of these sections. It also shows you how to dynamically filter it depending on where it is displayed or who is viewing it.

...

To embed PowerBI dashboards you need to have configured PowerBI and Projector.

To embed My Home Page and Performance dashboards requires the global permission Users and Permissions set to Update. Dashboards are configured and displayed based on User Type.

...

Tip
titleJust Getting Started?

Consider working with one of our PowerBI partners to help you get PowerBI licensing, help with your Projector configuration, and training on building your first dashboards.

Contacting Projector Support


Configure Projector Dashboard

...

PowerBI reports can be embedded in the following three areas. The instructions below are for a home page, but the same principles apply for all three areas.


Steps to show a PowerBI reports on a user's home page.

  1. Identify the user you want to show a PowerBI dashboard to
  2. Note their primary user type (this can be found by going to Administration tab | Users and Resources subsection | Users blue dot)
  3. Edit that user type and go to the dashboards tab (User types are located at Administration tab | Users and Resources subsection | Users blue dot)
    1. Name the dashboard
    2. Tick the checkbox for User's Home Page
    3. Enter a height (800 is often good)
    4. Choose MS Power BI from the Display dropdown box
    5. Get your Workspace ID - this is found by logging into https://app.powerbi.com and opening your workspace. The URL will contain the ID.
    6. Get your Report ID - this is found by logging into https://app.powerbi.com and opening your report. The URL will contain the ID.
    7. Leave Filters blank for now. See the filters section of this page to learn how to use this feature.
    8. Your configured dashboard should now look similar to this
    9. Update Global Permissions to enable "View advanced analytics content".
      Image Added
  4. Log into Projector Web and go to Topics | My Home Page. Choose your dashboard from the dropdown list.

...

Projector can dynamically filter displayed PowerBI content. For example, you might have a report that shows profit for all your projects. When you display just that project you want to hide all the other projects in the report. This lets you build one report and display it in many places.

...

Warning
titleEscaping Filters

Before you start actually building filters you HAVE to understand this part. If your Data Set or Field names contain spaces or non-ASCII characters they either need to be renamed or they need to be escaped. Renaming is easier to understand, so we recommend removing all spaces, hyphens, and special characters.

If you choose to keep those kinds of characters in the name, you'll need to escape them when building your filters. The most frequent character that needs escaping is a space.

To escape a character:

  • Prepend '_x'
  • Type Four-digit unicode character
  • Append underscore '_'

For example, a space becomes _x0020_. The field 'Project Code' would become 'Project_x0020_Code'.


Hard-Coded Filters

These are the simplest filters to set up. You hard code the values displayed.

...

You can dynamically filter the displayed content based on either where it is displayed or who is viewing it. The table below explains the filters available.

AreaFilters

My Home Page

Performance Dashboards

  • {0} - Primary User Type Name
  • {1} - Resource Display Name
  • {2} - Resource Cost Center Name
  • {3} - Resource Cost Center Number
  • {4} - Resource Company Name
  • {5} - Resource Company Number
  • {6} - Primary User Type Unique Identifier
  • {7} - Resource Unique Identifier
  • {8} - Resource User Unique Identifier
  • {9} - Resource Cost Center Unique Identifier
  • {10} - Resource Company Unique Identifier
  • {11} - Authenticated User Unique Identifier
  • {12} - Authenticated User Display Name
Project Workspaces
{0} = Project Code
{1} = Engagement Code
{2} = Project Unique Identifier
{3} = Engagement Unique Identifier
{4} = Contract Line Item Code
{5} = Contract Line Item Unique Identifier
{6} = Client Number
{7} = Client Unique Identifier


Code Block
//Example of dynamic filter
MyGinsuReport/ProjectCode eq '{0}'   //the {0} is automatically replaced based on the project you are viewing


//Example of dynamic filter on two fields
MyGinsuReport/UserName eq '{1}'  //the {1} is automatically replaced based on the user viewing the dashboard

...