Dashboard Mode - Why RLS protects sensitive data
Business Question
How does Row-Level Security (RLS) protect sensitive data by restricting what each user can see in a sales report?
How does Row-Level Security (RLS) protect sensitive data by restricting what each user can see in a sales report?
| Salesperson | Region | Sales Amount |
|---|---|---|
| Alice | North | 1000 |
| Bob | South | 1500 |
| Charlie | East | 1200 |
| Diana | West | 1300 |
| Eva | North | 1100 |
| Frank | South | 1400 |
Total Sales = SUM('Sales'[Sales Amount])Region = LOOKUPVALUE('UserRegion'[Region], 'UserRegion'[User], USERPRINCIPALNAME())+----------------------+----------------------+ | Total Sales | Sales by Region | | (KPI Card) | (Bar Chart) | +----------------------+----------------------+ | Salesperson Details Table | | (Filtered by RLS) | +----------------------------------------------+
The RLS filter automatically limits data shown in all components based on the logged-in user's assigned region. No manual filter needed. When a user logs in, Power BI applies the RLS rule to show only rows matching their region. This updates the KPI, bar chart, and table to show only their allowed data.
If you add a filter for Region = 'South', which components update?