Forum Discussion
MikeTamoush
3 years agoQrew Elite
Assuming you mean the number of digits ('characters') in a numeric field (so 123 is 3 characters, 5555 is four characters), then use marks formula but wrap the field in totext().
IF(
Length(ToText([My Number field]))> 0
and
Length(ToText([My Number field])) < 5,
"You must enter at least 5 digits in the XYZ field")
------------------------------
Mike Tamoush
------------------------------
IF(
Length(ToText([My Number field]))> 0
and
Length(ToText([My Number field])) < 5,
"You must enter at least 5 digits in the XYZ field")
------------------------------
Mike Tamoush
------------------------------
20494
3 years agoQrew Member
Yeah, that's perfect!
Thank you very much Mike!
Thank you very much Mike!