Does anyone know to add a calendar drop down for all cells in a particular column?

  • Thread starter Thread starter mp
  • Start date Start date
M

mp

Does anyone know to add a calendar drop down for all cells in a
particular column?
 
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.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top