Sample Data
Sample customer data table with IDs, names, and countries to be used in a Power BI dataflow.
| 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 table with IDs, names, and countries to be used in a Power BI dataflow.
| 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.SelectRows(Source, each [Country] = "USA")A B C 1 CustomerID Name Country 2 101 Alice USA <-- included 3 102 Bob Canada 4 103 Charlie USA <-- included
A B C 1 CustomerID Name Country 2 101 Alice USA 3 103 Charlie USA