Challenge - 5 Problems
DATE Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:30remaining
What date does this formula produce?
Given the formula
=DATE(2024, 2, 29) in a cell, what is the displayed date?Google Sheets
=DATE(2024, 2, 29)
Attempts:
2 left
💡 Hint
Remember 2024 is a leap year.
✗ Incorrect
The DATE function creates a date from year, month, and day. 2024 is a leap year, so February 29 is valid.
📊 Formula Result
intermediate1:30remaining
What date is shown by this formula?
What date does
=DATE(2023, 13, 1) produce in Google Sheets?Google Sheets
=DATE(2023, 13, 1)
Attempts:
2 left
💡 Hint
Months over 12 roll over to next year.
✗ Incorrect
Month 13 means 1 month after December 2023, so January 1, 2024.
❓ Function Choice
advanced2:00remaining
Which formula correctly creates March 15, 2025?
Choose the formula that produces the date March 15, 2025 in Google Sheets.
Attempts:
2 left
💡 Hint
Check month and day values carefully.
✗ Incorrect
Only option C uses valid month and day values for March 15, 2025.
🎯 Scenario
advanced2:00remaining
Calculate the date 45 days after January 10, 2024
You want to find the date 45 days after January 10, 2024. Which formula using DATE and arithmetic gives the correct date?
Attempts:
2 left
💡 Hint
Adding days to a date works by adding numbers to the date value.
✗ Incorrect
Adding 45 to the date value of January 10, 2024, correctly calculates the date 45 days later.
❓ data_analysis
expert2:30remaining
How many valid dates are created by these formulas?
Given these formulas in cells:
How many of these produce valid dates without error?
=DATE(2024, 2, 29)=DATE(2023, 2, 29)=DATE(2024, 13, 1)=DATE(2024, 0, 15)How many of these produce valid dates without error?
Attempts:
2 left
💡 Hint
Check leap year and month overflow rules carefully.
✗ Incorrect
DATE(2024,2,29) is valid (leap year). DATE(2023,2,29) is invalid (no Feb 29 in 2023). DATE(2024,13,1) is valid (month 13 = Jan next year). DATE(2024,0,15) is valid (month 0 = Dec previous year). So 3 valid dates.