Validation Rule

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way I can limit the number of characters to 2 in a text box on a
form that is unbound using the Validation Rule in the Data section of the
control's Properties? I know how to do this using VBA in Event.AfterUpDate;
I'm just wondering if it's easier in Validation Rule. Thanks in advance.
 
In the InputMask property of the text ox you can write

&&

to limit the input to two chr
 
Back
Top