0
0
Power BIbi_tool~10 mins

Workspaces in Power BI - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows three Power BI workspaces with their owners, number of members, and number of reports.

CellValue
A1Workspace Name
B1Owner
C1Members
D1Reports
A2Sales Team
B2Alice
C25
D23
A3Marketing
B3Bob
C34
D32
A4Finance
B4Carol
C43
D44
Formula Trace
=SUM(D2:D4)
Step 1: D2
Step 2: D3
Step 3: D4
Step 4: SUM(3, 2, 4)
Cell Reference Map
    A           B          C          D
1 | Workspace | Owner    | Members  | Reports
2 | Sales Team| Alice    | 5        | 3
3 | Marketing | Bob      | 4        | 2
4 | Finance   | Carol    | 3        | 4

Formula references cells D2, D3, and D4 for report counts.
The formula sums the number of reports from the three workspaces listed in cells D2 to D4.
Result
    A           B          C          D
1 | Workspace | Owner    | Members  | Reports
2 | Sales Team| Alice    | 5        | 3
3 | Marketing | Bob      | 4        | 2
4 | Finance   | Carol    | 3        | 4
5 |           |          | Total    | 9
The total number of reports across all workspaces is 9, shown in cell D5.
Sheet Trace Quiz - 3 Questions
Test your understanding
Which cells does the formula =SUM(D2:D4) add together?
ACells D2, D3, and D4
BCells A2, B3, and C4
CCells B2 to B4
DCells C2, C3, and C4
Key Result
SUM(range) adds all numeric values in the specified cell range.