It might be just as simple to just automatically fill in the date on
Wednesdays, if the user doesn't do so.
If Weekday(Date()) = 4 And IsNull(Me.YourDateField) Then
Me.YourDateField = Date()
End If
Then there is the question of whether or not the user should be able to
enter a date on other days besides Wednesday. In that case the following
could be added to the Current event of the form.
If Weekday(Date()) <> 4 then
Me.YourDateField.Enabled = False
Else
Me.YourDateField.Enabled = True
End If
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.