Validation Rule

  • Thread starter Thread starter bw
  • Start date Start date
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
 
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
 
Back
Top