Recall & Review
beginner
What does the YEAR function do in Excel?
The YEAR function extracts the year part from a date and returns it as a number. For example, YEAR("2024-06-15") returns 2024.
Click to reveal answer
beginner
How do you extract the month from a date in Excel?
Use the MONTH function. It returns the month number (1 to 12) from a date. For example, MONTH("2024-06-15") returns 6.
Click to reveal answer
beginner
What is the purpose of the DAY function in Excel?
The DAY function extracts the day number from a date. For example, DAY("2024-06-15") returns 15.
Click to reveal answer
beginner
If cell A1 contains the date 2024-12-25, what formula extracts the year?
Use =YEAR(A1). It will return 2024.
Click to reveal answer
intermediate
Can YEAR, MONTH, and DAY functions work with text dates?
Yes, if the text is in a recognizable date format. Excel converts it to a date internally. Otherwise, it may give an error.
Click to reveal answer
What does the formula =MONTH("2024-11-05") return?
✗ Incorrect
MONTH extracts the month number from the date, which is 11 for November.
Which function extracts the day from a date in Excel?
✗ Incorrect
DAY returns the day number from a date.
If A1 contains 2023-03-10, what does =YEAR(A1) return?
✗ Incorrect
YEAR extracts the year part, which is 2023.
What happens if you use DAY on a cell with text 'Hello'?
✗ Incorrect
DAY expects a date. Text that is not a date causes an error.
Which formula extracts the month from a date in cell B2?
✗ Incorrect
MONTH(B2) extracts the month number from the date in B2.
Explain how to extract the year, month, and day from a date in Excel.
Think about the three separate functions that each pull a part of the date.
You got /4 concepts.
Describe what happens if you use YEAR, MONTH, or DAY on a text string that looks like a date.
Consider how Excel handles text that looks like dates.
You got /3 concepts.