Excel provides a range of functions and tools to manipulate and format data, including dates. If you have a dataset with dates that include the year, and you want to remove the year while keeping the day and month intact, there are a few simple methods you can use. In this blog post, we will explore different techniques to remove the year from dates in Excel, ensuring your data is presented as desired.
Method 1: Using the TEXT Function

The TEXT function in Excel is a powerful tool for formatting and converting data into text. It allows you to specify a custom format for your data. To remove the year from a date, you can use the TEXT function with a custom format that excludes the year.
- Select the cell where you want the modified date to appear.
- Enter the formula
=TEXT(cell_with_date,"mm-dd")
or=TEXT(cell_with_date,"dd-mm")
depending on your desired date format. - Replace
cell_with_date
with the actual cell reference containing the date. - Press Enter to apply the formula and see the result.
The mm
in the formula represents the month, and dd
represents the day. By using this formula, you can easily remove the year from the date while maintaining the month and day in the desired format.
Method 2: Using the DATE Function

The DATE function in Excel allows you to create a date by specifying the year, month, and day separately. By setting the year to 0
, you can effectively remove the year from the date.
- Select the cell where you want the modified date to appear.
- Enter the formula
=DATE(0,month_number,day_number)
, wheremonth_number
andday_number
are the actual month and day values from your original date. - Replace
month_number
andday_number
with the corresponding values from your dataset. - Press Enter to apply the formula and see the result.
This method ensures that the date is still recognized as a valid date by Excel, but the year is effectively removed.
Method 3: Custom Number Formatting

Excel also provides a custom number formatting feature that allows you to change the way a date is displayed without altering the actual date value. This method is useful when you want to display the date without the year for presentation purposes.
- Select the range of cells containing the dates you want to format.
- Right-click on the selected cells and choose Format Cells from the context menu.
- In the Format Cells dialog box, go to the Number tab.
- Under Category, select Custom.
- In the Type box, enter
mm-dd
ordd-mm
depending on your desired date format. - Click OK to apply the custom formatting.
Now, the selected cells will display the dates without the year, while the actual date values remain unchanged.
Method 4: Using Excel's Format Cells Feature

Excel's Format Cells feature provides a quick and easy way to format dates without the year. This method is particularly useful when you want to apply a specific date format to a large range of cells.
- Select the range of cells containing the dates you want to format.
- Right-click on the selected cells and choose Format Cells from the context menu.
- In the Format Cells dialog box, go to the Number tab.
- Under Category, select Date.
- Choose a date format that excludes the year, such as mm-dd or dd-mm.
- Click OK to apply the formatting.
Excel will automatically apply the selected date format to the range of cells, removing the year from the displayed dates.
Additional Tips and Considerations

When working with dates in Excel, it's important to keep a few things in mind:
- Make sure to use the appropriate date format for your region. Excel's default date format may vary depending on your system settings.
- If you need to perform calculations or sort data based on the modified dates, ensure that the actual date values remain intact. Methods like the TEXT function or custom number formatting only change the visual representation of the date, not the underlying value.
- When using formulas to remove the year, ensure that the cell references are correct and point to the cells containing the original dates.
Conclusion

Excel offers various methods to remove the year from dates, allowing you to present your data in a more concise and focused manner. Whether you prefer using functions like TEXT and DATE, or utilizing Excel's formatting features, you can easily achieve the desired result. Remember to consider the purpose of your data presentation and choose the method that best suits your needs. With these techniques, you can effectively manipulate and format dates in Excel, making your data analysis and visualization more efficient and visually appealing.
Frequently Asked Questions

Can I remove the year from multiple dates at once using a single formula?

+
Yes, you can use the TEXT function with a range of cells. Simply select the range of cells containing the dates, and enter the formula in the first cell of the range. Excel will automatically apply the formula to the entire selection, removing the year from all the dates.
Will the methods mentioned above alter the actual date values in my dataset?

+
No, the methods described focus on changing the visual representation of the date without altering the underlying date values. This ensures that any calculations or sorting based on the original dates will still work as expected.
Can I use these methods to remove the year from a date in a different format, such as “dd/mm/yyyy”?

+
Yes, the TEXT function and custom number formatting methods can be adapted to work with different date formats. Simply adjust the formula or format code to match the desired format, ensuring that the month and day values are correctly extracted.