How to insert a date picker in emails in Outlook?
Suppose you need to send a work schedule to your colleagues, assigning different tasks to different people on different dates. However, you are worried about making mistakes entering the date manually, so you need a date picker instead. This tutorial provides a method to help you insert a date picker in emails in Outlook.
Insert a date picker in Emails in Outlook with VBA code
You can run the following VBA code to insert a date picker in Outlook emails. Please follow the instructions below.
1. Launch your Outlook, press the Alt + F11 keys to open the Microsoft Visual Basic for Applications window.
2. In the left pane, double click Project1 > Microsoft Outlook Objects > ThisOutlookSession, and then copy the following VBA code into the ThisOutlookSession (Code) window.
VBA code: Insert date picker in Outlook emails
Sub DatePicker()
'Updated by Extendoffice 20220615
Dim xDoc As Document
On Error Resume Next
Set xDoc = Application.ActiveInspector.WordEditor
With xDoc.Application.Selection
.Range.ContentControls.Add (wdContentControlDate)
.ParentContentControl.DateDisplayFormat = "MMMM d, yyyy"
.InsertAfter Format(Now(), "MMMM d, yyyy")
.MoveRight wdCharacter, 1
End With
End Sub
Note: In the code, you can change “MMMM d, yyyy” to the date format you need.
3. Stay in the Microsoft Visual Basic for Applications window, click Tools > References.
4. In the References – Project1 dialog box, check the Microsoft Word 16.0 Object Library checkbox, and click OK to save the changes.
5. Press the Alt + Q keys to close the Microsoft Visual Basic for Applications window.
6. In the Mail view, click the New Email button under the Home tab to create a new email.
7. In the Message window, click the Customize Quick Access Toolbar button , and then select More Commands from the drop-down menu. See screenshot:
8. In the Outlook Options window, you need to configure as follows.



The VBA script is now added to the Quick Access Toolbar and displayed as the icon you specified.
From now on, when composing an email, you can click the date picker icon on the Quick Access Toolbar to insert a date picker into the email body, and then select a date you need from it. See the following demo.
Notes:
Kutools for Outlook - Brings 100 Advanced Features to Outlook, and Make Work Much Easier!
- Auto CC/BCC by rules when sending email; Auto Forward Multiple Emails by custom; Auto Reply without exchange server, and more automatic features...
- BCC Warning - show message when you try to reply all if your mail address is in the BCC list; Remind When Missing Attachments, and more remind features...
- Reply (All) With All Attachments in the mail conversation; Reply Many Emails in seconds; Auto Add Greeting when reply; Add Date into subject...
- Attachment Tools: Manage All Attachments in All Mails, Auto Detach, Compress All, Rename All, Save All... Quick Report, Count Selected Mails...
- Powerful Junk Emails by custom; Remove Duplicate Mails and Contacts... Enable you to do smarter, faster and better in Outlook.

