0
0
Power BIbi_tool~10 mins

Why dataflows centralize data preparation in Power BI - Formula Trace Breakdown

Choose your learning style9 modes available
Sample Data

Sample customer data from different sources before centralizing with dataflows.

CellValue
A1CustomerID
B1Name
C1Country
A2101
B2Alice
C2USA
A3102
B3Bob
C3Canada
A4103
B4Charlie
C4USA
Formula Trace
Table.TransformColumns(Source, {"Country", Text.Upper})
Step 1: Source
Step 2: Table.TransformColumns(Source, {"Country", Text.Upper})
Cell Reference Map
    A       B        C
1 CustomerID Name    Country
2 101        Alice   USA
3 102        Bob     Canada
4 103        Charlie USA

Arrow: 'Country' column is transformed to uppercase
The formula references the 'Country' column (C2:C4) to apply uppercase transformation.
Result
    A       B        C
1 CustomerID Name    Country
2 101        Alice   USA
3 102        Bob     CANADA
4 103        Charlie USA
After transformation, the 'Country' column has standardized uppercase values, centralizing data preparation.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula Table.TransformColumns(Source, {"Country", Text.Upper}) do?
AConverts all values in the 'Country' column to uppercase
BFilters rows where 'Country' is uppercase
CDeletes the 'Country' column
DAdds a new column with uppercase country names
Key Result
Table.TransformColumns applies a function to transform values in a specified column.