Requirement – InfoPath form title column should allow only alphabets and numbers to be keyed in, no special characters should be allowed.
Solution – Write a validation rule for the column. The condition would be
Field: Title
Condition: does not match pattern
Custom pattern: -?[ a-zA-Z0-9]*[ a-zA-Z0-9]+
Advertisements