Originally I asked: Is it possible to prevent users changing a date field in form view once a first date has been added?<br><br>Kathryn response of.... If Not (IsNull(Me!YourControlName.OldValue)) Then <br>MsgBox "You cannot change a value once it has been entered!"<br>Cancel = True Me!YourControlName.Undo End If<br><br>..works but the data can be deleted.<br><br>How can I prevent both changes and deletion?<br><br>Thanks again<br>