Complete the code to create a paginated report that fits well on a printed page.
Report.Width = [1]Paginated reports are designed to fit standard paper sizes like 8.5 inches wide for printing.
Complete the code to set the report to display data in a fixed layout for formal presentation.
Report.Layout = [1]Fixed layout ensures the report looks the same on every page, important for formal reports.
Fix the error in the expression to calculate total sales in a paginated report.
TotalSales = Sum([1])The correct syntax to sum a column in DAX is Sum(TableName[ColumnName]).
Fill both blanks to create a filter expression that shows only sales from 2023 in a paginated report.
Filter(Sales, Sales[Year] [1] [2])
The filter should check if the Year column equals 2023 to show only that year's sales.
Fill both blanks to create a DAX measure that calculates average sales for products with sales greater than 1000.
AverageSales = CALCULATE(AVERAGE(Sales[Amount]), FILTER(Sales, Sales[Amount] [1] [2]))
The filter uses '>' and 1000 to select sales greater than 1000. The last blank is empty because no extra code is needed after FILTER.