
Signature
Regards Ron de Bruin
http://www.rondebruin.nl
Thanks Ron. That worked, but I would like the calendar to disappear
after I click on a calendar day. Do you know how to do that? Thanks
again.
> See this page mp
> http://www.rondebruin.nl/calendar.htm
[quoted text clipped - 5 lines]
> > Does anyone know to add a calendar drop down for all cells in a
> > particular column?
Ron de Bruin - 16 Oct 2006 22:33 GMT
You can use this
Private Sub Calendar1_Click()
ActiveCell.Value = CDbl(Calendar1.Value)
ActiveCell.NumberFormat = "mm/dd/yyyy"
ActiveCell.Select
Calendar1.Visible = False
End Sub

Signature
Regards Ron de Bruin
http://www.rondebruin.nl
> Thanks Ron. That worked, but I would like the calendar to disappear
> after I click on a calendar day. Do you know how to do that? Thanks
[quoted text clipped - 8 lines]
>> > Does anyone know to add a calendar drop down for all cells in a
>> > particular column?