Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, and 2021. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Generating a List of Dates.
Written by Allen Wyatt (last updated March 13, 2021)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
For some documents, it is helpful to have a list of dates that you can use as the basis for your work. For instance, you may have to create a report that lists all the dates between now and the end of the year, along with a person's name or a project name to the right of the date. The starting point, of course, is getting the list of dates.
There are a couple of ways you can approach generating the list. One easy method is to use Excel in conjunction with Word. Excel's AutoFill feature makes generating a list of dates amazingly easy. Once you have the list in Excel, you can then copy and paste it into the Word document, or you can use mail merge to merge the dates into the document (if that approach is appropriate for your needs).
If you prefer to not use Excel for some reason, the best solution is to use a macro. The following macro very quickly creates a list of all the dates for the year 2021:
Sub PrintYearDays()
Dim StartDate As Date
Dim T As Integer
StartDate = #12/31/2020#
For T = 1 To 365
Selection.TypeText Text:=Format(StartDate + T, _
"mmmm dd yyyy")
Selection.TypeParagraph
Next T
End Sub
Notice that the macro works by setting the StartDate variable equal to the last day of 2020, and then the For ... Next loop steps through 365 days. If you want to have the macro work for some other date range, just change the starting date, along with the ending value of the For ... Next loop.
If you need to create date lists, and you never quite know what the beginning and ending dates in the range will be, then a different macro approach makes more sense. The following macro asks you for both a beginning and ending date:
Sub ListDates()
Dim ListDate as Date
Dim StartDate As Date
Dim EndDate As Date
Dim Repeats As Integer
'Gets user input
StartDate = InputBox("Please enter the starting date.", _
"Start Date", "Start Date")
EndDate = InputBox("Please enter the ending date.", _
"End Date", "End Date")
'Enters the start date in the document
Selection.TypeText Text:=Format(StartDate, _
"dddd, MMMM dd, yyyy")
Selection.TypeText (vbCr & vbLf)
'Determines the number of dates to print
Repeats = DateDiff("d", StartDate, EndDate)
'Loops to print the list of dates
For i = 1 To Repeats
ListDate = DateAdd("d", i, StartDate)
Selection.TypeText Text:=Format(ListDate, _
"dddd, MMMM dd, yyyy")
Selection.TypeParagraph
Next i
End Sub
The StartDate and EndDate variables, set by your input, determines how many times the For ... Next loop is repeated.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (13155) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Word here: Generating a List of Dates.
Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2021 or Microsoft 365. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word Step by Step today!
There are numerous ways you can delete paragraphs as you are editing your document. This tip looks at a couple of the ...
Discover MoreSometimes Word can be rather cryptic in the error messages it provides. One such cryptic message warns about "too many ...
Discover MoreDrag-and-drop editing is a handy feature when you love to use the mouse. There are two ways you can move text using the ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-03-13 06:42:29
Ken Endacott
Here is a more user friendly version of the macro ListDates.
Sub ListDates()
Dim StartDate As Date
Dim EndDate As Date
Dim Repeats As Integer
Dim i As Long
Dim s As String
' date can be entered in one of the following formats:
' 1 feb 2021 1 February 21 1,Feb,21 1/2/2021 1/2/21
' 1,2,21 1,feb and others
s = InputBox("Please enter the starting date.", _
"Start Date", "Start Date")
If s = "" Then Exit Sub
If Not IsDate(s) Then
MsgBox "Error in start date"
Exit Sub
End If
StartDate = s
s = InputBox("Please enter the ending date.", _
"End Date", "End Date")
If s = "" Then Exit Sub
If Not IsDate(s) Then
MsgBox "Error in end date"
Exit Sub
End If
EndDate = s
'Determines the number of dates to print
Repeats = DateDiff("d", StartDate, EndDate) + 1
i = 1
Do While i <= Repeats
Selection.TypeText Text:=Format(StartDate, _
"dddd, MMMM dd, yyyy")
Selection.TypeParagraph
i = i + 1
StartDate = DateAdd("d", 1, StartDate)
Loop
End Sub
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments