Complete the code to set the report page size to a standard layout.
PageSize = [1]Setting the page size to 'Letter' ensures a standard report size for printing and viewing.
Complete the code to add a slicer visual for filtering data by 'Region'.
VisualType = [1]A slicer visual allows users to filter report data interactively by fields like 'Region'.
Fix the error in the DAX measure to calculate total sales correctly.
TotalSales = SUM([1])The correct syntax for SUM requires the table and column name in the format Table[Column].
Fill both blanks to create a measure that calculates average sales per region.
AvgSalesPerRegion = AVERAGEX(VALUES([1]), CALCULATE(SUM([2])))
VALUES(Sales[Region]) gets unique regions, and SUM(Sales[Amount]) sums sales per region for averaging.
Fill all three blanks to create a calculated column that flags high sales over 1000.
HighSalesFlag = IF([1] > [2], [3], "No")
This IF statement checks if Sales[Amount] is greater than 1000, then flags "Yes", else "No".