0
0
Power BIbi_tool~20 mins

Why choosing the right visual matters in Power BI - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Visual Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Choosing the best visual for comparing categories

You want to compare sales amounts across different product categories clearly and quickly. Which visual type is best to show this comparison?

AA bar chart showing sales amount per category
BA pie chart showing sales percentage per category
CA line chart showing sales amount over time
DA scatter plot showing sales amount vs. product price
Attempts:
2 left
💡 Hint

Think about which visual makes it easiest to compare values side by side.

dax_lod_result
intermediate
2:00remaining
Calculate total sales for the latest year

Given a sales table with a 'Year' column and 'SalesAmount' column, which DAX measure correctly calculates total sales for the latest year in the data?

Power BI
Total Sales Latest Year = CALCULATE(SUM(Sales[SalesAmount]), Sales[Year] = MAX(Sales[Year]))
ACALCULATE(SUM(Sales[SalesAmount]), Sales[Year] = MAX(Sales[Year]))
BSUMX(FILTER(Sales, Sales[Year] = MAX(Sales[Year])), Sales[SalesAmount])
CSUM(Sales[SalesAmount])
DCALCULATE(SUM(Sales[SalesAmount]), ALL(Sales[Year]))
Attempts:
2 left
💡 Hint

Use a filter to select only the latest year based on the data.

visualization
advanced
2:30remaining
Identify the best visual for showing sales trend and category share

You want to create a dashboard showing both the sales trend over time and the share of sales by category for the latest month. Which combination of visuals is best?

AA table for sales trend over time and a line chart for category share in the latest month
BA line chart for sales trend over time and a pie chart for category share in the latest month
CA scatter plot for sales trend over time and a donut chart for category share in the latest month
DA bar chart for sales trend over time and a stacked bar chart for category share in the latest month
Attempts:
2 left
💡 Hint

Think about which visuals best show trends and parts of a whole.

🔧 Formula Fix
advanced
2:30remaining
Fix the DAX measure that returns incorrect total sales

This DAX measure is supposed to calculate total sales for the current year, but it returns the total for all years. What is the problem?

Total Sales Current Year = CALCULATE(SUM(Sales[SalesAmount]), FILTER(Sales, Sales[Year] = YEAR(TODAY())))
Power BI
Total Sales Current Year = CALCULATE(SUM(Sales[SalesAmount]), FILTER(Sales, Sales[Year] = YEAR(TODAY())))
AChange YEAR(TODAY()) to MAX(Sales[Year])
BUse ALL(Sales) inside FILTER to remove filters
CReplace FILTER with Sales[Year] = YEAR(TODAY()) directly inside CALCULATE
DRemove CALCULATE and use SUM(Sales[SalesAmount]) only
Attempts:
2 left
💡 Hint

CALCULATE can filter columns directly without FILTER function.

🎯 Scenario
expert
3:00remaining
Design a dashboard for multiple user roles with different data needs

Your company has sales managers and finance analysts. Sales managers want to see sales trends and top products, while finance analysts want detailed profit margins and cost breakdowns. How should you design the Power BI dashboard to meet both needs effectively?

ACreate dashboards only for sales managers and share raw data with finance analysts
BCreate a single dashboard with filters to switch between sales and finance views
CCreate one dashboard with all visuals for both roles combined
DCreate separate dashboards for sales managers and finance analysts with tailored visuals
Attempts:
2 left
💡 Hint

Think about user focus and clarity of information.