Challenge - 5 Problems
Static RLS Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
❓ dax_lod_result
intermediate2:00remaining
DAX Measure Result with Static RLS
Given a table 'Sales' with columns 'Region' and 'Amount', and a static RLS rule that filters 'Region' to 'West', what is the result of the following measure?
If the 'Sales' table contains:
- West: 100, 200
- East: 300, 400
What is the output of
Total Sales = SUM(Sales[Amount])If the 'Sales' table contains:
- West: 100, 200
- East: 300, 400
What is the output of
Total Sales when the RLS is applied?Attempts:
2 left
💡 Hint
Remember that static RLS filters the data before the measure calculation.
✗ Incorrect
Static RLS filters the 'Sales' table to only include rows where Region = 'West'. The amounts for West are 100 and 200, so the sum is 300.
❓ visualization
intermediate2:00remaining
Visual Impact of Static RLS on a Bar Chart
You have a bar chart showing total sales by region. A static RLS rule restricts data to the 'North' region only.
Which of the following describes the correct visual output?
Which of the following describes the correct visual output?
Attempts:
2 left
💡 Hint
Static RLS filters the data source, so only allowed data is visible in visuals.
✗ Incorrect
Static RLS filters the data before visuals are rendered. Only 'North' region data is available, so only that bar appears.
🧠 Conceptual
advanced2:00remaining
Understanding Static RLS Rule Application
Which statement best describes how static RLS rules are applied in Power BI?
Attempts:
2 left
💡 Hint
Think about what 'static' means in this context.
✗ Incorrect
Static RLS applies fixed filters defined in Power BI Desktop or service that does not vary by user identity.
❓ data_modeling
advanced2:00remaining
Modeling Static RLS with Role Filters
You want to create a static RLS role that restricts users to see only data where 'Country' = 'USA'. Which of the following DAX filter expressions correctly implements this static RLS rule on the 'Customers' table?
Attempts:
2 left
💡 Hint
Static RLS roles use simple filter expressions on columns.
✗ Incorrect
The RLS role filter expression should be a boolean condition on the column, like Customers[Country] = "USA".
🔧 Formula Fix
expert2:00remaining
Debugging Static RLS Not Applying Correctly
A report uses a static RLS role filtering 'Region' = 'South'. However, users assigned to this role see data from all regions.
Which of the following is the most likely cause?
Which of the following is the most likely cause?
Attempts:
2 left
💡 Hint
Check role assignments carefully.
✗ Incorrect
If users are not assigned to the RLS role, the filter does not apply and they see all data.