0
0
Power BIbi_tool~10 mins

Dataflow entities in Power BI - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows dataflow entities with their row and column counts.

CellValue
A1Entity Name
B1Rows
C1Columns
A2Customers
B21000
C25
A3Orders
B35000
C37
A4Products
B4200
C44
Formula Trace
=SUM(B2:B4)
Step 1: B2
Step 2: B3
Step 3: B4
Step 4: SUM(1000, 5000, 200)
Cell Reference Map
    A          B          C
1 |Entity Name| Rows     | Columns  |
2 |Customers  | 1000  -->| 5        |
3 |Orders     | 5000  -->| 7        |
4 |Products   | 200   -->| 4        |
Cells B2 to B4 are referenced to sum the total rows across entities.
Result
    A          B          C
1 |Entity Name| Rows     | Columns  |
2 |Customers  | 1000     | 5        |
3 |Orders     | 5000     | 7        |
4 |Products   | 200      | 4        |
5 |Total Rows | 6200     |          |
The total rows from all entities are summed and displayed in cell B5.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula =SUM(B2:B4) calculate?
ANumber of entities
BTotal number of columns in all entities
CTotal number of rows in all entities
DSum of entity names
Key Result
SUM(range) adds all numeric values in the specified cell range.