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