Hi Kevin,
This looks like it's ready for publication. Are you starting your own line of Excel articles?
(^v°)
Main Topics
Browse All TopicsHi,
I have an excel document that has a date column in it. I'd like to be about to click on an elipsys or drop-down type of button and have a visual calendar appear that would allow you select a date from that and it populate the field. Any suggestions? I'm using Excel 2007.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: zorvekPosted on 2009-10-21 at 17:29:31ID: 25629803
This article presents a solution to display a date entry calendar control next to specific cells when those cells are selected - no menus or command buttons are required. The calendar control allows selection of the year, month, and the day of the month. Clicking in any other cell or double clicking on a day of the month closes the control. The calendar control is always positioned near the cell and so that it is entirely visible.
ByVal Target As Range)
s Then
ick()
endarInput ControlNam e).Visible = False rInputFram e1Name).De lete rInputFram e2Name).De lete
)
endarInput ControlNam e).Delete (ClassType :="MSCAL.C alendar.7" , Left:=0, Top:=0, Width:=180, Height:=120)
Columns(Ac tiveWindow .VisibleRa nge.Column s.Count).L eft Then Rows(Activ eWindow.Vi sibleRange .Rows.Coun t).Top Then e(msoShape Rectangle, Cell.Left, Cell.Top, Cell.Width + 1, Cell.Height + 1) .ShapeRang e r = 12 e(msoShape Rectangle, Cell.Left + Cell.Width + 5 + HorizontalDelta, Cell.Top + Cell.Height + 5 + VerticalDelta, 182.5, 123) ject.Shape Range r = 12 endarInput ControlNam e)
ailbag/qvb a01.htm
(ClassType :="MSCAL.C alendar.7" , ...)
The Microsoft Calendar control is used to implement this solution. It is an ActiveX control used to input dates using a graphical month display. Using it to input dates is usually easier than typing the date directly into a cell. One of the most common techniques for using the calendar control on a worksheet is to add the control during development, make it invisible, and then show it when needed. If using a user form the control is placed on the form at design time. The problem with these techniques and with the calendar control in general is that there is a unique version installed with each version of Office and, if pre-loaded onto a worksheet or user form in one version of Office, it may not work correctly in another version of Office. The solution is to use late binding and load the control only when needed.
This article provides a VBA solution that works in all versions of Excel regardless of the version of the calendar control installed. The calendar is created only when needed and discarded (versus hidden) when not needed. The solution positions the control so that it is never hidden outside the visible range of cells, and frames the selected cell and calendar input control in blue. Because the calendar control was not installed with Excel prior to Excel 2007, instructions are included at the end of this article describing how to obtain the control.
The solution is provided in three parts: sample code that is placed in any worksheet SelectionChange event handlers to determine when to show the calendar input control, a general code module that contains the support code, and code to add to the ThisWorkook code module. Below is sample code illustrating how to use the solution. The sample shows the calendar input control when any cell in the range A1:D4 or F1:H4 is selected. Note that no calendar contol needs to be added to the worksheet, the code below adds and deletes the calendar control automatically.
[Begin Code Segment]
Private CalendarDisplayed As Boolean
Private Sub Worksheet_SelectionChange(
If Not Intersect(Target, [A1:D4, F1:H4]) Is Nothing And Target.Address = Target(1).MergeArea.Addres
ShowCalendarInputControl Target
CalendarDisplayed = True
Else
If CalendarDisplayed Then
HideCalendarInputControl
CalendarDisplayed = False
End If
End If
End Sub
Public Sub CalendarInputControl_DblCl
HideCalendarInputControl
End Sub
[End Code Segment]
Below is the support code that is placed in a new general code module. To add VBA code to a regular or general module in an Excel workbook, press ALT+F11 to open the VBA development environment (VBE). Select the menu command Insert->Module to create a new VBA module. Paste the code into the document window that appears. Press ALT+F11 to return to the Excel workbook.
[Begin Code Segment]
Option Explicit
Private Const CalendarInputControlName = "CalendarInputControl"
Private Const CalendarInputFrame1Name = "CalendarInputFrame1"
Private Const CalendarInputFrame2Name = "CalendarInputFrame2"
Public Sub HideCalendarInputControl()
On Error Resume Next
ActiveSheet.OLEObjects(Cal
ActiveSheet.Shapes(Calenda
ActiveSheet.Shapes(Calenda
End Sub
Public Sub ResetCalendarInputControl(
Dim Calendar As Object
On Error Resume Next
ActiveSheet.OLEObjects(Cal
Set Calendar = ActiveSheet.OLEObjects.Add
If Err.Number <> 0 Then
MsgBox "The Microsoft Calendar Control is not installed on this computer."
HideCalendarInputControl
Exit Sub
End If
Calendar.Name = CalendarInputControlName
Calendar.Visible = False
End Sub
Public Sub ShowCalendarInputControl( _
ByVal Cell As Range _
)
Dim Calendar As Object
Dim CalendarFrame As Shape
Dim CellFrame As Shape
Dim HorizontalDelta As Double
Dim VerticalDelta As Double
HideCalendarInputControl
If Cell.Left + Cell.Width + 5 + 182.5 > ActiveWindow.VisibleRange.
HorizontalDelta = -Cell.Width - 10 - 182.5
End If
If Cell.Top + Cell.Height + 5 + 123 > ActiveWindow.VisibleRange.
VerticalDelta = -Cell.Height - 10 - 123
End If
Set CellFrame = ActiveSheet.Shapes.AddShap
CellFrame.Name = CalendarInputFrame1Name
With CellFrame.OLEFormat.Object
.Fill.Visible = msoFalse
.Line.ForeColor.SchemeColo
.Line.Weight = 2.5
End With
Set CalendarFrame = ActiveSheet.Shapes.AddShap
CalendarFrame.Name = CalendarInputFrame2Name
With CalendarFrame.OLEFormat.Ob
.Fill.Visible = msoFalse
.Line.ForeColor.SchemeColo
.Line.Weight = 2.5
End With
On Error Resume Next
Set Calendar = ActiveSheet.OLEObjects(Cal
On Error GoTo 0
If Not Calendar Is Nothing Then
With Calendar
.Left = Cell.Left + Cell.Width + 7 + HorizontalDelta
.Top = Cell.Top + Cell.Height + 7 + VerticalDelta
End With
End If
Calendar.LinkedCell = Cell.Address
Calendar.Visible = False
Calendar.Visible = True
End Sub
[End Code Segment]
Below is the code that is placed in the ThisWorkbook code module.
[Begin Code Segment]
Private Sub Workbook_Open()
ResetCalendarInputControl
End Sub
[End Code Segment]
Obtaining the Control
Visit this website to get versions of the control installed prior to Excel 2007:
http://www.fontstuff.com/m
Instructions are provided on how to install the control.
Additional Information
The names of the calendar control (as listed in the ActiveX control chooser) installed with the versions of Office since Office 97 are listed below.
2007: Calendar Control 2007
2003: Calendar Control 11.0
2002: Calendar Control 10.0
2000: Calendar Control 9.0
97: Calendar Control 8.0
All versions are registered with the same class name, "MSCAL.Calendar.7", which is used to load the control as illustrated below.
Set Calendar = ActiveSheet.OLEObjects.Add
The file name of the control has also remained consistant: "MSCAL.OCX".
A final note about the technique used. When any ActiveX control is added or deleted from a worksheet the VBA environment is reset which means all global variables, module level variables, and static variables are cleared. To get around this deficiency, the calendar control is deleted and added when the workbook is opened and then hidden and shown from that point forward. The reason it needs to be deleted and added is that the version of the control can change from workstation to workstation.
Kevin