0
0
Power BIbi_tool~20 mins

Title, labels, and legends in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Master of Titles, Labels, and Legends
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
2:00remaining
Identify the Correct Title Placement for Accessibility

You create a bar chart in Power BI showing sales by region. You want the chart title to be clear and accessible for screen readers. Which option correctly sets the title for best accessibility?

AAdd a text box above the chart with 'Sales by Region' and disable the visual title.
BLeave the title blank and rely on the axis labels only.
CSet the title text to 'Sales by Region' and enable the 'Title' toggle in the visual formatting pane.
DUse a legend to display 'Sales by Region' instead of a title.
Attempts:
2 left
💡 Hint

Think about how screen readers recognize chart titles.

🧠 Conceptual
intermediate
1:30remaining
Purpose of Legends in Data Visualizations

Why is a legend important in a Power BI chart that uses multiple colors to represent categories?

AIt automatically filters data based on user clicks.
BIt adds decorative colors to make the chart look more attractive.
CIt replaces the need for axis labels entirely.
DIt explains what each color or symbol in the chart represents, helping users understand the data.
Attempts:
2 left
💡 Hint

Think about how users know what each color means.

dax_lod_result
advanced
2:30remaining
DAX Measure for Dynamic Title Showing Selected Year

You want a dynamic title in Power BI that shows 'Sales in Year: <selected year>'. Which DAX measure produces the correct title when a single year is selected from a slicer?

Power BI
DynamicTitle =
VAR SelectedYear = SELECTEDVALUE('Calendar'[Year], "Multiple or None")
RETURN
"Sales in Year: " & SelectedYear
A"Sales in Year: " & VALUES('Calendar'[Year])
B"Sales in Year: " & SELECTEDVALUE('Calendar'[Year], "Multiple or None")
CCONCATENATE("Sales in Year: ", FIRSTNONBLANK('Calendar'[Year], 0))
D"Sales in Year: " & MAX('Calendar'[Year])
Attempts:
2 left
💡 Hint

Consider which function returns a single value or a default text.

🔧 Formula Fix
advanced
2:00remaining
Fixing Legend Display Issue in a Stacked Column Chart

You created a stacked column chart with categories and subcategories. The legend only shows the main categories, not subcategories. What is the most likely cause?

AThe legend field is set only to the main category column, missing subcategories.
BThe chart type does not support legends for subcategories.
CThe data model has no relationship between categories and subcategories.
DThe legend is disabled in the visual formatting pane.
Attempts:
2 left
💡 Hint

Check which field is assigned to the legend area.

🎯 Scenario
expert
3:00remaining
Designing a Dashboard with Clear Titles, Labels, and Legends

You are designing a sales dashboard for non-technical users. The dashboard includes multiple charts with different measures and categories. Which combination of title, labels, and legend practices ensures the dashboard is easy to understand?

AUse descriptive chart titles, label axes clearly with units, and include legends with clear category names and contrasting colors.
BUse short titles, hide axis labels to reduce clutter, and remove legends to simplify visuals.
CUse generic titles like 'Chart 1', use axis labels only when necessary, and use legends only for pie charts.
DUse no titles, rely on tooltips for labels, and use legends with many colors regardless of contrast.
Attempts:
2 left
💡 Hint

Think about clarity and ease of understanding for all users.