Validation Rule

B

bw

I want to force the user to enter a period at the end of a note field. Can someone show
me how to do this using a validation rule?

Thanks,
Bernie
 
J

John Nurick

In addition to the validation rule you could insert the period by
running code in the BeforeUpdate() event of the textbox displaying the
field. Something like

With Me.ActiveControl
If Right(.Value, 1) <> "." Then
.Value = Trim(.Value) & "."
End If
End With
 
Top