I tried setting up a new combo box to have todays date as a user choice by setting its property to a value list. Then for the row source it set it to =Date(). Access will not show what the expression equals but only the expresion formula itself. What am I doing wrong here? Thanks in advance!
Access 2003: Make a combo box value equal todays date
Collapse
X
-
You should have also putas default value ..Code:=Date()
This way you can have the chance of editing/changingComment
-
If you have a ComboBox that includes today's date as a value, then all you need do to select this value is set the value of the ComboBox to today's date :
Where you put this depends on what exactly you're after, but the Form_Open() event procedure works for most cases.Code:Me.cboDates = Date()
Comment
Comment