Challenge - 5 Problems
Custom Date Format Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
❓ dax_lod_result
intermediate1:30remaining
Custom Date Format Output in Tableau
You have a date field 'Order Date'. You apply the custom date format
MMM dd, yyyy in Tableau. What will be the output for the date 2024-06-15?Attempts:
2 left
💡 Hint
MMM means the short month name, dd is day with leading zero, yyyy is full year.
✗ Incorrect
The format
MMM dd, yyyy shows the abbreviated month name, day number, then full year. So June 15, 2024 becomes 'Jun 15, 2024'.❓ visualization
intermediate1:30remaining
Choosing the Correct Custom Date Format for a Dashboard
You want to display dates on a sales dashboard as 'Friday, June 14, 2024'. Which custom date format string should you use in Tableau to achieve this?
Attempts:
2 left
💡 Hint
dddd gives full weekday name, MMMM full month name.
✗ Incorrect
The format
dddd, MMMM dd, yyyy shows full weekday name, full month name, day, and year, matching the desired output.🧠 Conceptual
advanced2:00remaining
Understanding Tableau Date Format Tokens
Which of the following statements about Tableau custom date format tokens is correct?
Attempts:
2 left
💡 Hint
Think about how years and months are commonly formatted.
✗ Incorrect
In Tableau, 'yy' shows two-digit year (e.g., 24), 'yyyy' shows four-digit year (e.g., 2024). 'MM' is month number with leading zero, 'MMM' is abbreviated month name. 'dd' is day of month, 'ddd' is abbreviated weekday. 'HH' is 24-hour, 'hh' is 12-hour.
🔧 Formula Fix
advanced2:00remaining
Fixing Incorrect Date Format Output
You applied the custom date format
MMM-dd-yyyy in Tableau but the output shows Jun-15-24 instead of Jun-15-2024. What is the cause?Attempts:
2 left
💡 Hint
Check the year token length.
✗ Incorrect
The token 'yy' shows two-digit year (e.g., 24). To show four-digit year (2024), use 'yyyy'. The dashes and 'MMM' are correct.
🎯 Scenario
expert3:00remaining
Designing a Custom Date Format for International Audience
You need to create a Tableau dashboard for users in the US and Europe. The date should show as
June 15, 2024 for US users and 15 June 2024 for European users. Which approach is best to handle this with custom date formats?Attempts:
2 left
💡 Hint
Think about how to customize display based on user location.
✗ Incorrect
Creating two calculated fields with different formats and showing them based on user locale allows correct regional date display. Single format or neutral ISO format may confuse users. Manual change is not user-friendly.