Challenge - 5 Problems
Date Formatting Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Format a date as 'Day-Month-Year' text
You have a date in cell A1: 2024-06-15. Which formula correctly converts this date to the text format
15-Jun-2024?Attempts:
2 left
💡 Hint
Use the TEXT function with the correct date format codes for day, month abbreviation, and year.
✗ Incorrect
The format code "dd-mmm-yyyy" shows day as two digits, month as three-letter abbreviation, and full year. Other options produce different formats.
📊 Formula Result
intermediate2:00remaining
Display weekday name from a date
Given a date in cell B2 (e.g., 2024-06-18), which formula returns the full weekday name like
Tuesday?Attempts:
2 left
💡 Hint
Use the format code for full weekday name in the TEXT function.
✗ Incorrect
"dddd" returns the full weekday name (e.g., Tuesday). "ddd" returns abbreviated weekday (Tue). "dd" returns day number, "mm" returns month number.
❓ Function Choice
advanced2:00remaining
Choose formula to format date as 'Month day, Year' text
You want to convert a date in cell C3 to text like
June 5, 2024. Which formula does this correctly?Attempts:
2 left
💡 Hint
Use full month name, day without leading zero, and full year format codes.
✗ Incorrect
"mmmm" gives full month name, "d" gives day without leading zero, and "yyyy" gives full year. Other options produce wrong formats or missing commas.
📊 Formula Result
advanced2:00remaining
Format date with leading zero day and abbreviated month
Cell D4 contains the date 2024-06-07. Which formula returns
07-Jun-24 as text?Attempts:
2 left
💡 Hint
Use two-digit day, three-letter month abbreviation, and two-digit year format codes.
✗ Incorrect
"dd" ensures day has leading zero, "mmm" is abbreviated month, "yy" is two-digit year. Other options miss leading zero or use wrong month format.
🎯 Scenario
expert3:00remaining
Combine date and time formatting in one TEXT formula
Cell E5 has a date and time value: 2024-06-15 14:30. Which formula converts it to text
15-Jun-2024 14:30?Attempts:
2 left
💡 Hint
Use 24-hour time format without AM/PM and correct date format.
✗ Incorrect
"HH:mm" gives 24-hour time with leading zero hour and minutes. "hh:mm AM/PM" uses 12-hour time with AM/PM, which is not wanted here. Other options use wrong separators or time formats.