Does anyone know to add a calendar drop down for all cells in a particular column?
M mp Oct 13, 2006 #1 Does anyone know to add a calendar drop down for all cells in a particular column?
M mp Oct 14, 2006 #3 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.
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.
R Ron de Bruin Oct 16, 2006 #4 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
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