0
0
Power BIbi_tool~20 mins

Workspaces in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Workspace Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Workspace Roles in Power BI

In Power BI, workspaces have different roles assigned to users. Which role allows a user to publish reports but not delete the workspace?

AContributor
BMember
CViewer
DAdmin
Attempts:
2 left
💡 Hint

Think about who can add content but not manage workspace settings.

dax_lod_result
intermediate
2:00remaining
DAX Measure Scoped to Workspace Data

Given a Power BI workspace containing sales data from multiple regions, you want a measure that calculates total sales only for the 'East' region within the workspace dataset. Which DAX expression correctly filters the data?

Power BI
Total Sales East = CALCULATE(SUM(Sales[Amount]), Sales[Region] = "East")
ASUM(Sales[Amount])
BSUMX(FILTER(Sales, Sales[Region] = "East"), Sales[Amount])
CCALCULATE(SUM(Sales[Amount]), Sales[Region] = "East")
DCALCULATE(SUM(Sales[Amount]), ALL(Sales[Region]))
Attempts:
2 left
💡 Hint

Use CALCULATE to apply a filter on the Region column.

visualization
advanced
2:00remaining
Best Visualization for Workspace Usage Over Time

You want to create a dashboard visualizing the number of active users in a Power BI workspace each month over the past year. Which visualization type best shows this trend clearly?

AStacked Bar Chart
BPie Chart
CScatter Plot
DLine Chart
Attempts:
2 left
💡 Hint

Think about which chart type shows changes over time smoothly.

data_modeling
advanced
2:00remaining
Modeling Workspace Data with User Access Logs

You have two tables: Users (UserID, UserName) and AccessLogs (UserID, WorkspaceID, AccessDate). You want to model the data to analyze workspace usage per user. What is the best relationship type to create between these tables in Power BI?

AMany-to-many between Users and AccessLogs on UserID
BOne-to-many from Users to AccessLogs on UserID
COne-to-one between Users and AccessLogs on UserID
DNo relationship needed
Attempts:
2 left
💡 Hint

Consider how many access log entries one user can have.

🔧 Formula Fix
expert
2:00remaining
Debugging Workspace Access Report Filter Issue

You created a report in a Power BI workspace to show active users filtered by workspace. The filter on WorkspaceID does not update the report visuals as expected. Which is the most likely cause?

AThe WorkspaceID column is not included in the report's data model relationships.
BThe filter is applied on a measure instead of a column.
CThe report visuals are set to ignore filters from slicers.
DThe WorkspaceID column contains null values.
Attempts:
2 left
💡 Hint

Check if the filter column is connected properly in the model.