Sample Data
This table shows users and their assigned regions for Row-Level Security (RLS) in Power BI Service.
| Cell | Value |
|---|---|
| A1 | User |
| B1 | Region |
| A2 | Alice |
| B2 | North |
| A3 | Bob |
| B3 | South |
| A4 | Carol |
| B4 | East |
| A5 | Dave |
| B5 | West |
This table shows users and their assigned regions for Row-Level Security (RLS) in Power BI Service.
| Cell | Value |
|---|---|
| A1 | User |
| B1 | Region |
| A2 | Alice |
| B2 | North |
| A3 | Bob |
| B3 | South |
| A4 | Carol |
| B4 | East |
| A5 | Dave |
| B5 | West |
USERNAME() = "Alice" && [Region] = "North"A B 1 | User | Region 2 | Alice | North <-- USERNAME() matches 'Alice', Region is 'North' 3 | Bob | South 4 | Carol | East 5 | Dave | West
A B 1 | User | Region 2 | Alice | North <-- Visible to Alice 3 | Bob | South <-- Not visible to Alice 4 | Carol | East <-- Not visible to Alice 5 | Dave | West <-- Not visible to Alice