Sample Data
Sample customer data from different sources before centralizing with dataflows.
| Cell | Value |
|---|---|
| A1 | CustomerID |
| B1 | Name |
| C1 | Country |
| A2 | 101 |
| B2 | Alice |
| C2 | USA |
| A3 | 102 |
| B3 | Bob |
| C3 | Canada |
| A4 | 103 |
| B4 | Charlie |
| C4 | USA |
Sample customer data from different sources before centralizing with dataflows.
| Cell | Value |
|---|---|
| A1 | CustomerID |
| B1 | Name |
| C1 | Country |
| A2 | 101 |
| B2 | Alice |
| C2 | USA |
| A3 | 102 |
| B3 | Bob |
| C3 | Canada |
| A4 | 103 |
| B4 | Charlie |
| C4 | USA |
Table.TransformColumns(Source, {"Country", Text.Upper})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
A B C 1 CustomerID Name Country 2 101 Alice USA 3 102 Bob CANADA 4 103 Charlie USA