0
0
Tableaubi_tool~20 mins

Dual axis charts in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Dual Axis Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Dual Axis Charts Purpose

What is the main advantage of using a dual axis chart in Tableau?

ATo compare two different measures with different scales on the same chart
BTo display multiple dimensions on a single axis
CTo filter data dynamically based on user input
DTo create a 3D visualization effect
Attempts:
2 left
💡 Hint

Think about why you would want two vertical scales on one chart.

dax_lod_result
intermediate
2:00remaining
Calculating Combined Measure for Dual Axis

Given two measures: Sales and Profit Margin, which DAX expression correctly calculates the average profit margin for use in a dual axis chart?

ACALCULATE(AVERAGE('SalesData'[Profit Margin]), ALL('SalesData'))
BSUM('SalesData'[Profit Margin]) / COUNT('SalesData'[Sales])
CDIVIDE(SUM('SalesData'[Profit]), SUM('SalesData'[Sales]))
DAVERAGE('SalesData'[Profit Margin])
Attempts:
2 left
💡 Hint

Look for the function that directly calculates average without filtering.

visualization
advanced
2:30remaining
Identifying Correct Dual Axis Chart Setup

You want to create a dual axis chart in Tableau showing Monthly Sales as bars and Monthly Profit Margin as a line. Which setup correctly achieves this?

ADrag Sales and Profit Margin to Columns, then select 'Dual Axis' from the Analysis menu
BPlace Sales and Profit Margin on Color shelf, then enable Dual Axis from the Marks card
CDrag Sales to Rows, Profit Margin to Rows, right-click second axis and select 'Dual Axis', then change Profit Margin mark type to Line
DCreate two separate sheets and combine them in a dashboard
Attempts:
2 left
💡 Hint

Remember how dual axis charts are created by layering two measures on the same axis.

🔧 Formula Fix
advanced
2:00remaining
Fixing Misaligned Dual Axis Chart

You created a dual axis chart in Tableau but the two axes are not aligned, causing confusion. What is the most likely cause?

AThe data source is missing a join between tables
BThe two axes have different ranges and 'Synchronize Axis' was not selected
CThe marks card is set to 'Automatic' instead of 'Bar' for both measures
DThe filters applied are inconsistent between the two measures
Attempts:
2 left
💡 Hint

Think about how axis scales affect dual axis charts.

🎯 Scenario
expert
3:00remaining
Designing a Responsive Dual Axis Dashboard

You are designing a Tableau dashboard with a dual axis chart showing Revenue and Customer Satisfaction. The dashboard must be accessible and responsive for users on different devices. Which practice is NOT recommended?

AFix the dashboard width to a large pixel value to maintain chart size
BAdd clear axis titles and tooltips explaining each measure
CUse contrasting colors with sufficient contrast ratio for the two measures
DEnable keyboard navigation and screen reader friendly labels
Attempts:
2 left
💡 Hint

Consider responsive design principles for dashboards.