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
- Open your Power BI report in Power BI Desktop.
- Click on the “Insert” tab in the ribbon.
- Select “Text box” from the “Text” options. A blank text box will appear on your report.
- Position the text box at the desired location on the report canvas.
- Click inside the text box and type in your desired title.
- 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
- Open your Power BI report in Power BI Desktop.
- Go to the “View” tab in the ribbon.
- Toggle ON the “Page view” option.
- Click on the “Format” option in the ribbon.
- In the “Page header” section, toggle ON the “Title” option.
- Enter your desired title in the input field.
- 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.