This is a form and the field is editable.
I really haven't tried anything yet.
I'm currently displaying "Today" using the IIF but I'm unable to edit the date if I want to:
Code:
SELECT IIf([ReminderDate]=Date(),"Today",Format([ReminderDate], "ddd mmm dd")) AS Expr1, * FROM tblReminders WHERE (((ReminderDate)<Date()+7)) ORDER BY ReminderDate, ReminderTypeID, Reminder;[/CODE
Using this I am unable to bring up the date picker.
Expr1 says it is a computed field, thus not editable. Personally I would not try to fill it with "Today", I would set the fields background colour based on the date. If today make it blue. If older, make it red. If in the next N days, yellow, otherwise green.
Trying to change the value itself won't be as helpful in the long run, especially as this is a reminder DATE. You want them to see the date.
Actually what I did was[lace a label next to the date field and in the On Current checked to see if the record's date value is =Date().
Seems to work ok.