Format Display in ComboBox

  • Thread starter Thread starter King
  • Start date Start date
K

King

Hello-

I have a combobox that is pulling a rowsource from a named range of dates
(1/12003, 1/2/2003, etc). The list displays fine, but when you select one
it shows up in the box as the value of the date (eg 37712).

Thanks
 
Private Sub Combobox1_Click()

Combobox1.Value = Format(cDate(combobox1.Value),"m/d/yyyy")

End Sub
 
Back
Top