Actually, as I said before, once the new date is entered and you leave the
Date_Work textbox the value should be recalculated; it works like this on the
form I created to investigate this. Don't know why it's not working, but I
guess you could try a work around. They this, where YourCalculatedFieldName
is the name of your actual field, and see if it works.
Private Sub Date_Work_AfterUpdate()
Me.YourCalculatedFieldName = Format(Me.Date_Work, "ww")
End Sub
Also, if you would, post the script that you're saving the record with.

Signature
There's ALWAYS more than one way to skin a cat!
Answers/posts based on Access 2000/2003
Robert T - 07 Dec 2007 12:53 GMT
The AfterUpdate script worked in my actual field. However, a dialog box
popped up and said the DoMenu Item was cancelled. What in the world is a
DoMenu item?
Linq:
I truly appreciate your help but I owe you an apology. Your last message
made me realize that "Week" was an actual field in the table, it was NOT a
calculated control. I thought it was only a caclulated control on the form, I
completely forgot that it is a bound field from the table.
Now that I realize such, I'm guessin a calculated control would actually
work without the AfterUpdate script.
Robert
> Actually, as I said before, once the new date is entered and you leave the
> Date_Work textbox the value should be recalculated; it works like this on the
[quoted text clipped - 7 lines]
>
> Also, if you would, post the script that you're saving the record with.
Robert T - 07 Dec 2007 18:25 GMT
Linq:
Here are 2 scripts, one for the New Record button and one for Saving the
Record. All of the fields on the form are filled in by default such as the
Word_Date being today's date, the starting/ending time, etc.
Private Sub btnNewRecord_Click()
On Error GoTo Err_btnNewRecord_Click
DoCmd.GoToRecord , , acNewRec
Me!Note.SetFocus
Exit_btnNewRecord_Click:
Exit Sub
Err_btnNewRecord_Click:
MsgBox Err.Description
Resume Exit_btnNewRecord_Click
End Sub
Private Sub btnSaveRec_Click()
On Error GoTo Err_btnSaveRec_Click
Me!Week.SetFocus
Me.Dirty = True
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Exit_btnSaveRec_Click:
Exit Sub
Err_btnSaveRec_Click:
MsgBox Err.Description
Resume Exit_btnSaveRec_Click
End Sub