Forum Discussion

jrossausiscom's avatar
jrossausiscom
Qrew Assistant Captain
7 years ago

Count the number of characters in a field (text AND numeric)

I need to create a calculated column that will only show me records where, in this case, the ZIP is less than 5 digits.  Length returns the error "expecting text".  Is there not a way to count numeric characters?
  • I assume that your zip field is numeric, so you need to convert it to text before you can count characters.


    Length(ToText([my numeric zip field goes here]))