Challenge - 5 Problems
Date Extraction Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:30remaining
Extract the year from a date
Given the date
2024-06-15 in cell A1, which formula correctly extracts the year?Attempts:
2 left
💡 Hint
The YEAR function returns the year part of a date.
✗ Incorrect
The YEAR function extracts the year number from a date. Here, =YEAR(A1) returns 2024.
📊 Formula Result
intermediate1:30remaining
Extract the month from a date
If cell B2 contains the date
2023-12-05, which formula extracts the month number correctly?Attempts:
2 left
💡 Hint
The MONTH function returns the month number from a date.
✗ Incorrect
The MONTH function extracts the month number from a date. For 2023-12-05, =MONTH(B2) returns 12.
📊 Formula Result
advanced2:00remaining
Extract the day from a date stored as text
Cell C3 contains the text string
"2024-07-20" (not a date). Which formula extracts the day number correctly?Attempts:
2 left
💡 Hint
Convert text to date first, then extract day.
✗ Incorrect
Since C3 is text, DAY(C3) fails. Using DATEVALUE(C3) converts text to date, so =DAY(DATEVALUE(C3)) returns 20.
❓ Function Choice
advanced2:00remaining
Choose the correct formula to extract year, month, and day separately
You have a date in cell D4. Which set of formulas correctly extracts year, month, and day respectively?
Attempts:
2 left
💡 Hint
Remember the YEAR, MONTH, and DAY functions extract parts of a date.
✗ Incorrect
Option A uses the correct functions: YEAR for year, MONTH for month, and DAY for day.
🎯 Scenario
expert2:30remaining
Calculate age in years from birthdate
Cell E5 contains a birthdate (e.g., 1990-04-25). Which formula calculates the person's age in full years as of today?
Attempts:
2 left
💡 Hint
Use DATEDIF to get full years between two dates.
✗ Incorrect
DATEDIF(start_date, end_date, "Y") returns the number of full years between two dates, correctly calculating age.