0
0
Tableaubi_tool~20 mins

Dashboard sizing options in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Dashboard Sizing Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Fixed Size Dashboards

In Tableau, what happens when you set a dashboard's size to Fixed Size?

AThe dashboard automatically adjusts to fit the screen size of any device.
BThe dashboard size is set based on the device type detected by Tableau.
CThe dashboard size stays constant regardless of the device or window size.
DThe dashboard size changes only when the browser window is resized.
Attempts:
2 left
💡 Hint

Think about what 'fixed' means in everyday life, like a fixed price or fixed schedule.

🧠 Conceptual
intermediate
2:00remaining
Choosing Automatic Sizing

What is the main advantage of setting a Tableau dashboard to Automatic size?

AIt allows the dashboard to resize dynamically to fit the available screen space.
BIt locks the dashboard size to a specific pixel dimension.
CIt disables any resizing and keeps the dashboard static.
DIt sets the dashboard size based on the largest worksheet inside it.
Attempts:
2 left
💡 Hint

Think about how websites adjust when you resize your browser window.

dax_lod_result
advanced
2:30remaining
Calculating Dashboard Width for Device Layout

You want to create a calculated measure in Tableau to determine the dashboard width based on device type. The logic is:

  • If device is 'Desktop', width = 1200
  • If device is 'Tablet', width = 800
  • If device is 'Phone', width = 400
  • Otherwise, width = 1000

Which calculated field formula correctly implements this?

ACASE [Device] WHEN 'Desktop' THEN 1200 WHEN 'Tablet' THEN 800 WHEN 'Phone' THEN 400 ELSE 1000 END
BIF [Device] = 'Desktop' THEN 1200 ELSEIF [Device] = 'Tablet' THEN 800 ELSEIF [Device] = 'Phone' THEN 400 ELSE 1000 END
CIF [Device] = 'Desktop' THEN 1200 ELSE IF [Device] = 'Tablet' THEN 800 ELSE IF [Device] = 'Phone' THEN 400 ELSE 1000 END
DSWITCH([Device], 'Desktop', 1200, 'Tablet', 800, 'Phone', 400, 1000)
Attempts:
2 left
💡 Hint

Remember Tableau uses CASE statements for multiple conditions.

visualization
advanced
2:30remaining
Best Practice for Responsive Dashboard Design

Which dashboard sizing option in Tableau best supports creating a dashboard that looks good on both desktop and mobile devices without manual resizing?

AFixed Size with 1200x800 pixels
BAutomatic sizing with floating layout containers
CFixed Size with 400x600 pixels
DRange sizing with minimum 800 and maximum 1200 pixels width
Attempts:
2 left
💡 Hint

Think about how a dashboard can adapt between a phone and a desktop screen.

🔧 Formula Fix
expert
3:00remaining
Troubleshooting Dashboard Size Not Changing

You set your Tableau dashboard size to Automatic, but when you view it on different devices, the size does not change. What is the most likely cause?

AYou did not publish the dashboard to Tableau Server.
BYou used floating objects that have fixed pixel sizes inside the dashboard.
CYou have fixed the size of all worksheets inside the dashboard.
DYou set the dashboard to Range sizing instead of Automatic.
Attempts:
2 left
💡 Hint

Think about what elements inside a dashboard can prevent resizing.