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 date as full weekday name
You have a date in cell A1: 2024-06-15. Which formula will display the full weekday name (e.g., "Saturday")?
Attempts:
2 left
💡 Hint
Use the TEXT function with the right format code for full weekday name.
✗ Incorrect
The format code dddd shows the full weekday name like "Saturday". ddd shows abbreviated weekday, and the others show date formats.
📊 Formula Result
intermediate2:00remaining
Format date as day-month-year with short month name
Given a date in cell B2: 2024-12-01, which formula formats it as "01-Dec-2024"?
Attempts:
2 left
💡 Hint
Use the format code for day, short month name, and year.
✗ Incorrect
dd is day with leading zero, mmm is short month name, and yyyy is full year.
❓ Function Choice
advanced2:00remaining
Choose formula to display date as "Month day, year"
You want to show the date in cell C3 as "June 5, 2024". Which formula will do this correctly?
Attempts:
2 left
💡 Hint
Look for full month name and day without leading zero.
✗ Incorrect
mmmm gives full month name, d gives day without leading zero, and yyyy is year.
📊 Formula Result
advanced2:00remaining
Format date to show ISO week number
Given a date in D4, which formula shows the ISO week number (1 to 53) of that date?
Attempts:
2 left
💡 Hint
ISO week number starts on Monday and can be different from WEEKNUM.
✗ Incorrect
ISOWEEKNUM returns the ISO standard week number. WEEKNUM counts weeks differently. TEXT with "ww" is not a valid date format code for week number.
❓ data_analysis
expert3:00remaining
Count dates formatted as "MMM-YY" in a range
You have dates in cells A1:A10. You want to count how many dates appear as "Jun-24" when formatted with =TEXT(date, "MMM-YY"). Which formula correctly counts these dates?
Attempts:
2 left
💡 Hint
You need to convert dates to text first, then compare.
✗ Incorrect
SUMPRODUCT(--(TEXT(A1:A10, "MMM-YY") = "Jun-24")) counts how many dates match the text "Jun-24". COUNTIF alone won't work because it compares raw dates, not formatted text.