Complete the code to create a new report page in Power BI Report Builder.
ReportPage = ReportBuilder.[1]()In Power BI Report Builder, you add a new report page using the AddPage() method.
Complete the code to add a table to the report body.
reportBody.[1](table)The AddTable() method adds a table to the report body in Report Builder.
Fix the error in the expression to set the data source for the dataset.
dataset.DataSource = [1]The correct syntax to create a new data source is NewDataSource('SalesDB') without spaces.
Fill both blanks to filter the dataset to only include sales greater than 1000.
dataset.Filter = "[1] > [2]"
The filter expression should compare SalesAmount to the value 1000.
Fill all three blanks to create a textbox with the title 'Total Sales' and set its font size to 14.
textbox = reportBody.[1]() textbox.Value = "[2]" textbox.Style.[3] = 14
You add a textbox with AddTextbox(), set its value to 'Total Sales', and set the font size using the FontSize style property.