0
0
Tableaubi_tool~20 mins

Synchronizing axes in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Axes Synchronization Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Why synchronize axes in Tableau?

Imagine you have two measures plotted on dual axes in Tableau. Why is it important to synchronize these axes?

ATo ensure both measures use the same scale for accurate visual comparison.
BTo make the chart load faster by reducing data points.
CTo automatically filter data based on user selection.
DTo change the color of the marks on the chart.
Attempts:
2 left
💡 Hint

Think about how different scales can affect how you see the data together.

visualization
intermediate
2:00remaining
Identify the synchronized axes chart

Below are descriptions of four Tableau dual-axis charts. Which one shows synchronized axes?

AAxes have different colors but same scale ranges.
BAxes are hidden but scales differ significantly.
COne axis ranges from 0 to 100, the other from 0 to 1000, lines appear misaligned.
DBoth axes have the same range from 0 to 100, and the lines overlap correctly.
Attempts:
2 left
💡 Hint

Look for matching scale ranges on both axes.

dax_lod_result
advanced
2:30remaining
DAX measure for synchronized axes effect

You want to create a measure in Power BI that mimics synchronized axes behavior by normalizing two measures to the same scale. Which DAX expression correctly normalizes Measure1 and Measure2 between 0 and 1?

ANormalizedMeasure1 = Measure1 - AVERAGE(Measure1)
BNormalizedMeasure1 = (Measure1 - MIN(Measure1)) / (MAX(Measure1) - MIN(Measure1))
CNormalizedMeasure1 = DIVIDE(Measure1, MAX(Measure1))
DNormalizedMeasure1 = Measure1 / SUM(Measure1)
Attempts:
2 left
💡 Hint

Normalization rescales values between minimum and maximum.

🔧 Formula Fix
advanced
2:30remaining
Why does the dual axis chart not synchronize?

You created a dual axis chart in Tableau but the axes are not synchronized even after clicking 'Synchronize Axis'. What could be the reason?

AThe axes are already synchronized by default.
BThe chart has filters applied that exclude some data points.
CThe measures have different data types, preventing synchronization.
DThe workbook is in read-only mode.
Attempts:
2 left
💡 Hint

Check if both measures are numeric and compatible.

🎯 Scenario
expert
3:00remaining
Designing a synchronized dual axis dashboard

You are building a Tableau dashboard showing sales and profit over time using dual axes. Sales values range from 0 to 1,000,000 and profit from 0 to 100,000. How should you synchronize axes to make the comparison meaningful?

ANormalize both sales and profit to a 0-1 scale before plotting and then synchronize axes.
BPlot raw sales and profit values and synchronize axes directly.
CUse separate axes without synchronization to keep original scales.
DConvert profit to thousands and synchronize axes with sales.
Attempts:
2 left
💡 Hint

Think about how to compare two measures with very different scales visually.