The MONTH function in Excel is designed to extract the month component from a given date. This function is particularly useful for data analysis and reporting, allowing users to easily organize and manipulate date-related data. With the MONTH function, you can convert date formats into numerical values representing the month, which can enhance the functionality of your spreadsheets.
Syntax
MONTH(serial_number)
- serial_number: This is the date from which you want to extract the month. It can either be a date value or a reference to a cell containing a date.
Example #1
MONTH("2023-10-15")
This function will return 10, indicating that October is the 10th month of the year.
Example #2
MONTH(A1)
If the cell A1 contains the date “2023-05-25”, this function will output 5, revealing that May is the 5th month.
Example #3
MONTH(DATE(2022, 8, 12))
Here, using the DATE function to create a date of August 12, 2022, the output will be 8, signifying the month of August.
Error handling
- VALUE! This error occurs if the argument provided is not recognizable as a date or is invalid, such as a text string not formatted as a date.
- NUM! This error is shown when a negative date serial number is provided, which is not valid in Excel.