0
0
Power BIbi_tool~10 mins

Page layout and canvas settings in Power BI - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data represents the page layout and canvas settings for a Power BI report page, including page size, canvas dimensions, view mode, and background color.

CellValue
A1Page Size
B116:9
A2Canvas Width (px)
B21280
A3Canvas Height (px)
B3720
A4Page View
B4Fit to Page
A5Page Background Color
B5#FFFFFF
Formula Trace
Canvas Area = Canvas Width (px) * Canvas Height (px)
Step 1: Canvas Width (px) * Canvas Height (px)
Step 2: 1280 * 720
Cell Reference Map
    A               B
1 | Page Size        | 16:9       |
2 | Canvas Width (px)| 1280       |
3 | Canvas Height(px)| 720        |
4 | Page View        | Fit to Page|
5 | Page Background Color | #FFFFFF|
Cells B2 and B3 provide the canvas width and height values used in the formula to calculate the canvas area.
Result
    A           B
1 | Canvas Area | 921600    |
The calculated canvas area is displayed in cell B1 as 921600 pixels, representing the total pixel area of the report page canvas.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula 'Canvas Width (px) * Canvas Height (px)' calculate?
AThe aspect ratio of the page
BThe total pixel area of the report canvas
CThe background color code
DThe page view mode
Key Result
Multiply canvas width by canvas height to get total canvas pixel area.