Memo field validation

G

Greg L.

Would anyone know how to set a validation rule for a Memo
field to limit the maximum number of allowable text
characters?
 
T

Tim Ferguson

Would anyone know how to set a validation rule for a Memo
field to limit the maximum number of allowable text
characters?

Is Null Or Len(MyMemo) < 2048

Of course, miss out the "Is Null Or" if it's a required field, but memos
rarely are required.

B Wishes


Tim F
 
Top