> ## Documentation Index
> Fetch the complete documentation index at: https://docs.curator.interworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Power BI Report

> Adding Power BI reports to Pages.

export const BackendNavPath = ({levelOne, levelTwo, levelThree, tab, section}) => {
  const levels = [levelOne, levelTwo, levelThree].filter(Boolean);
  const lastLevel = levels.length ? levels[levels.length - 1] : '';
  return <span>
      In the <a href="/setup/installation/linux_installation">backend of Curator</a> using the left-hand navigation,
      navigate to the
      {levelOne && <strong>{" " + levelOne}</strong>}
      {levelOne && levelTwo && " > "}
      {levelTwo && <strong>{levelTwo}</strong>}
      {levelTwo && levelThree && " > "}
      {levelThree && <strong>{levelThree}</strong>} page.
      {(tab || section) && <>
          {" "}On the {lastLevel} page
          {tab && <> click the <strong>{tab}</strong> tab</>}
          {tab && section && " and"}
          {section && <> expand the <strong>{section}</strong> section</>}.
        </>}
    </span>;
};

When embedding Power BI reports in Curator, you have the option to add them directly to pages for a more dynamic
layout. This allows you to create rich, interactive pages that incorporate Power BI reports alongside other content.

## Adding A Power BI Report to Pages

Once a [Power BI Report has been added to Curator](/embedding_using_analytics/power_bi_reports/adding_a_power_bi_report)
follow the steps below to add it to a page:

1. <BackendNavPath levelOne="Content" levelTwo="Pages" />
2. Find the page you'd like to add your Power BI Report to, or click the "+ New Page" button.
3. Select the element you'd like to make a Power BI Report, or click the plus (+) icon to add a new blank element.
4. In the "Add Element" pop-up, click on the **Analytic Elements** tab at the top and select the **Power BI Report**
   option.
   <img className="rounded-xl" src="https://mintcdn.com/interworks/Tq3G8WR4kXtdOgjW/assets/images/site_content_design/pages/select_pbi_report_element.png?fit=max&auto=format&n=Tq3G8WR4kXtdOgjW&q=85&s=c80227f175422f0e23da8d27ca86d8a5" alt="Select Power BI Report page element" width="4320" height="2688" data-path="assets/images/site_content_design/pages/select_pbi_report_element.png" />
5. In the Page Styles section on the left-hand side, you can choose the Report to Embed.
   <img className="rounded-xl" src="https://mintcdn.com/interworks/Tq3G8WR4kXtdOgjW/assets/images/site_content_design/pages/select_pbi_report_page_styles_left_hand_panel.png?fit=max&auto=format&n=Tq3G8WR4kXtdOgjW&q=85&s=b6daeb49b1540890e5cbb32d2d71b6f2" alt="Select Power BI Report page styles left hand panel" width="4320" height="2688" data-path="assets/images/site_content_design/pages/select_pbi_report_page_styles_left_hand_panel.png" />
6. Click **Save**.
