How To Add Title In Power Bi Desktop

How to Add Title in Power BI Desktop

Adding a title to your Power BI report/dashboard in Power BI Desktop is simple and can enhance the overall presentation of your data. You can add a title either by using a text box or by modifying the page header.

Using a Text Box

  1. Open your Power BI report in Power BI Desktop.
  2. Click on the “Insert” tab in the ribbon.
  3. Select “Text box” from the “Text” options. A blank text box will appear on your report.
  4. Position the text box at the desired location on the report canvas.
  5. Click inside the text box and type in your desired title.
  6. Customize the font size, color, and other formatting options using the options available in the ribbon.

Example:

<div class="textbox">
    <p class="title">Sales Report</p>
</div>
    

Modifying the Page Header

  1. Open your Power BI report in Power BI Desktop.
  2. Go to the “View” tab in the ribbon.
  3. Toggle ON the “Page view” option.
  4. Click on the “Format” option in the ribbon.
  5. In the “Page header” section, toggle ON the “Title” option.
  6. Enter your desired title in the input field.
  7. Customize the font size, color, and alignment using the options provided.

Example:

<div class="page-header">
    <p class="title">Sales Report</p>
</div>
    


Make sure to replace “Sales Report” with your actual title.

You can adjust the CSS classes “textbox”, “title”, and “page-header” to match your preferred styling.

Similar post

Leave a comment