0
0
Excelspreadsheet~20 mins

DATE function construction in Excel - 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
2:00remaining
Calculate the date for the 15th day of the 3rd month in 2025
Which formula correctly returns the date March 15, 2025?
A=DATE(15,3,2025)
B=DATE(3,15,2025)
C=DATE(2025,15,3)
D=DATE(2025,3,15)
Attempts:
2 left
💡 Hint
Remember the DATE function order is YEAR, MONTH, DAY.
📊 Formula Result
intermediate
2:00remaining
Find the date 10 days after January 25, 2024
Which formula returns the date February 4, 2024?
A=DATE(2024,2,4)
B=DATE(2024,1,35)
C=DATE(2024,1,25)+10
D=DATE(2024,1,25-10)
Attempts:
2 left
💡 Hint
Adding days to a date can be done by simple addition.
Function Choice
advanced
2:00remaining
Choose the formula that returns the last day of February in a leap year
Which formula returns February 29, 2020?
A=DATE(2020,2,29)
B=DATE(2020,3,0)
C=DATE(2020,2,28)+1
D=DATE(2020,2,30)
Attempts:
2 left
💡 Hint
Using day 0 of the next month returns the last day of the previous month.
📊 Formula Result
advanced
2:00remaining
Calculate the date 45 days before April 10, 2023
Which formula returns the date February 24, 2023?
A=DATE(2023,4,10)-45
B=DATE(2023,4,10)+45
C=DATE(2023,2,24)
D=DATE(2023,3,26)
Attempts:
2 left
💡 Hint
Subtract days by simple subtraction from the date.
🎯 Scenario
expert
3:00remaining
Determine the weekday of the first day of the current year
Given the current year is 2024, which formula returns the weekday number of January 1, 2024, where Sunday=1 and Saturday=7?
A=WEEKDAY(DATE(2024,1,1),1)
B=WEEKDAY(DATE(2024,1,1),2)
C=WEEKDAY(DATE(2024,1,1),3)
D=WEEKDAY(DATE(2024,1,1))
Attempts:
2 left
💡 Hint
Check the WEEKDAY function's return type to match Sunday=1.