Skip to main content

How to insert current day or month or year into cell in Excel?

When you want to quickly insert the current month or current date in Excel, how can you insert? The following method will help you quickly insert current month or date into a cell, or into header/footer of worksheet.


Insert current year, month or date by formulas and hotkeys in Excel

In Excel, you can insert current year, month, date, and timestamps with formulas easily.

Take inserting current month for example, please type the formula =MONTH(TODAY()) in the cell you want to insert current month and press Enter.

  Formula  Formula returns
Insert Current Month =MONTH(TODAY()) 8
Insert Current Month =TEXT(TODAY(),"MMMM") August
Insert Current Year =YEAR(TODAY()) 2015
Insert Current Date =TODAY() 2015/8/20
Insert Current date and time =NOW() 2015/8/20 9:41

Hotkeys can also help you insert current date and time easily:

(1) Press CTRL+ ; keys to insert current date.

(2) Press CTRL+ ; to insert the current date first and release the keys, then press Space button to insert a space, at last press CTRL+SHIFT+; to insert the current time.

note ribbon Formula is too complicated to remember? Save the formula as an Auto Text entry for reusing with only one click in future!
Read more…     Free trial

Insert current year, month or date with special date formatting

If you have Kutools for Excel installed, its Insert Date utility can help you quickly insert current month or date with various date formatting with just several clicks in Excel.

Kutools for Excel - Supercharge Excel with over 300 essential tools. Enjoy a full-featured 30-day FREE trial with no credit card required! Get It Now

After installing Kutools for Excel, please do as following steps:

1. Select a cell that you want to insert current year, month or day, and click the Kutools > Insert > Insert Date, see screenshot:

2. In the Insert Date dialog, check the Using format option, and then double click a date formatting in the right pane. See screenshot above:

Now current date is inserted into active cell with the specified date formatting.

Note: By default current date is selected in the calendar in the Insert Date dialog box. If you need to insert other date, you need to select the date in the calendar firstly.

Kutools for Excel - Supercharge Excel with over 300 essential tools. Enjoy a full-featured 30-day FREE trial with no credit card required! Get It Now


Insert Current date and time in cell/header/footer with Kutools for Excel

If you have Kutools for Excel installed, its Insert Workbook Information utility enables you to insert current date and time into cell/header/footer easily. Please do as follows:

Kutools for Excel - Supercharge Excel with over 300 essential tools. Enjoy a full-featured 30-day FREE trial with no credit card required! Get It Now

1. Click the Kutools Plus > Workbook > Insert Workbook Information.

2. In the opening Insert Workbook Information dialog box, check the Current date and time option, in the Insert at section specify a position, and click the Ok button. See screenshot above:

Then current date and time is inserted at the specified cell, header, or footer at once.

Kutools for Excel - Supercharge Excel with over 300 essential tools. Enjoy a full-featured 30-day FREE trial with no credit card required! Get It Now


Demo: insert current day, month, or year into cell/header/footer in Excel


Kutools for Excel: Over 300 handy tools at your fingertips! Start your 30-day free trial with no feature limitations today. Download Now!

Relative article:

Quickly insert current date with specific date format

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (27)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
In EXCEL 365, I want to insert the month based on cell A2 along with a text string in the header.
This comment was minimized by the moderator on the site
Hi Larry,
Do you want to extract the month name from Cell A2 which is filled with date and text string? Or extract month name from Cell A2 and output the month nae and text string together?
This comment was minimized by the moderator on the site
I want to insert the month based on cell A2 along with a text string.
This comment was minimized by the moderator on the site
=TEXT(MONTH(TODAY()),"mmmm") gives me January, although it is now February. What is wrong with this formula?
This comment was minimized by the moderator on the site
Take MONTH out of the formula:
=TEXT(TODAY(),"MMMM")
This comment was minimized by the moderator on the site
how to get current month only in header/footer
This comment was minimized by the moderator on the site
No normal ways can get current month in header or footer in Excel. But VBA can:

Sub add_date_header()
ActiveSheet.PageSetup.CenterHeader = Format(Date, "mmmm")
End Sub
This comment was minimized by the moderator on the site
Hi all, I need a formula to COUNT all the records from previous months and years from a single column source. Can someone please help me for this?
For Example, I have dates in A column, but I want to get the COUNT not sum, of the only dates which are from previous month or year.
This comment was minimized by the moderator on the site
Hi,
The topic of this article is about inserting the current date, month, or year.
This comment was minimized by the moderator on the site
HOW DO I GET THE PREVIOUS MONTH AND YEAR IN THE SAME CELL
This comment was minimized by the moderator on the site
Hi,
=YEAR(TODAY())&"/"&(MONTH(TODAY())-1)

This formula will return year and previous month in the formatting of “2017/8”
This comment was minimized by the moderator on the site
how do I get Current Month and Year in the same cell =TEXT(TODAY(),"MMMM") August =YEAR(TODAY()) So using the Above how would I get December, 2016 format?
This comment was minimized by the moderator on the site
=+TEXT(TODAY(),"mmm")&"-"&(YEAR(TODAY()))
This comment was minimized by the moderator on the site
=CONCATENATE(TEXT(TODAY()," MMMM"), ", ", YEAR(TODAY()))
This comment was minimized by the moderator on the site
Instead you can simply
=TEXT(TODAY(),"MMM,YYYY")
This comment was minimized by the moderator on the site
thanks a lot..this formula works exactly what we need
This comment was minimized by the moderator on the site
This formula worked great, but one question how would I adjust this formula to show the previous month and year instead of the current month and year.=CONCATENATE(TEXT(TODAY()," MMMM"), ", ", YEAR(TODAY()))
This comment was minimized by the moderator on the site
#1: Check your machine date #2: check =TODAY()
This comment was minimized by the moderator on the site
[quote]#1: Check your machine date #2: check =TODAY()By Jayadev BS[/quote] ^^ this returns the correct date but I still have the issue with =year(today()) it returns a full date but in 1905 (eg. 07/08/1905)
This comment was minimized by the moderator on the site
year(today()) formula return a date in 1905... Send Help!
This comment was minimized by the moderator on the site
I am trying to use this function to return values for projected month sales. I have tried to use this formula to return a value for two months past the current month but it is only returning the value for Dec when Nov is the current month rather than January. Can somebody please help? =VLOOKUP(MONTH(current_date+2),MA_Prod_Forecasting,5)
There are no comments posted here yet
Load More
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations