0
0
Google Sheetsspreadsheet~20 mins

DATE function in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
DATE Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1: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)
AFebruary 29, 2024
BMarch 1, 2024
CError: Invalid date
DFebruary 28, 2024
Attempts:
2 left
💡 Hint
Remember 2024 is a leap year.
📊 Formula Result
intermediate
1: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)
AJanuary 13, 2023
BDecember 1, 2023
CError: Invalid month
DJanuary 1, 2024
Attempts:
2 left
💡 Hint
Months over 12 roll over to next year.
Function Choice
advanced
2:00remaining
Which formula correctly creates March 15, 2025?
Choose the formula that produces the date March 15, 2025 in Google Sheets.
A=DATE(2025, 3, 32)
B=DATE(2025, 15, 3)
C=DATE(2025, 3, 15)
D=DATE(2025, 2, 45)
Attempts:
2 left
💡 Hint
Check month and day values carefully.
🎯 Scenario
advanced
2: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?
A=DATE(2024, 1, 10 + 45)
B=DATE(2024, 1, 10) + 45
C=DATE(2024, 1, 55)
D=DATE(2024, 2, 24)
Attempts:
2 left
💡 Hint
Adding days to a date works by adding numbers to the date value.
data_analysis
expert
2:30remaining
How many valid dates are created by these formulas?
Given these formulas in cells:

=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?
A3
B2
C4
D1
Attempts:
2 left
💡 Hint
Check leap year and month overflow rules carefully.