PL-300 Manage and secure Power BI • Set 7
PL-300 Manage and secure Power BI Practice Test 7 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. You are configuring row-level security (RLS) for a Power BI dataset. The JSON shows a role named 'RegionManager' with a filter expression. Users assigned to this role complain that they see all regions instead of only 'North'. What is the likely cause?
{
"dataset": {
"name": "SalesAnalysis",
"tables": [
{
"name": "Sales",
"columns": [
{"name": "SalesAmount", "dataType": "decimal"},
{"name": "Region", "dataType": "string"},
{"name": "Salesperson", "dataType": "string"}
]
}
],
"roles": [
{
"name": "RegionManager",
"modelPermission": "Read",
"tablePermissions": [
{
"name": "Sales",
"filterExpression": "[Region] = \"North\""
}
]
}
]
}
}