Forum Discussion

smmoore34's avatar
smmoore34
Advocate II
2 years ago
Solved

Customize Brower Tab Title and URL

When publishing Power BI reports using the html link, the browser tab only says " Power BI".

Is it possible to customize the tab names or the URL?

 

 

2 Replies

  • Shivu-2000's avatar
    Shivu-2000
    Responsive Resident

    Hi smmoore34 

    Yes, you can customize the tab name and URL for Power BI reports published using HTML links.
    To do so follow these steps respectively:

    To Customize the Tab Name:

    1. Add a Title to the Report: In Power BI Desktop, give your report a descriptive title. This title will be used as the default tab name in the browser.
    2. Use the title Attribute: When embedding the Power BI report using HTML, include the title attribute within the <iframe> tag. This will override the default tab name.

    For eg:

    HTML
    <iframe src="https://app.powerbi.com/embed?token=your_token" width="100%" height="600" title="My Custom Report Title"></iframe>
    

    To Customize the URL:

    1. Create a Custom Bookmark: In Power BI Desktop, create a bookmark for the specific view or page you want to share.
    2. Use the Bookmark URL: When embedding the report, use the bookmark URL instead of the default report URL. This will create a custom URL that points directly to the bookmarked view.

    Example:

    HTML
    <iframe src="https://app.powerbi.com/embed?token=your_token&bookmark=your_bookmark_id" width="100%" height="600"></iframe>
    

     
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
    Happy to help!