Hi there, well spotted (the space) it did not occur to me - I took the space out.
It now works - too well infact as it updates
all records with today's date. This is what I do, I tick the text box and select the next record at the bottom of the form then a Write conflict dialog box appears telling me the record has been changed by another user since............
Save record - Copy changes - Drop changes.
Code:
Private Sub Authorised_AfterUpdate()
CurrentDb.Execute "Update tblComments set tblComments.AuthorisedDate = Now()"
End Sub
Any ideas
Mark