Advanced Math - count characters in field

This may be a dumb question and I’m missing something but is there a way to use Advanced Math to get the amount of characters in a field? I’m trying to set up a workflow step for a customer that will halt if the PO number is above a certain character count

Something like len() - i’ve tried variations but haven’t figured out the correct syntax (if it’s even possible)

1 Like

Len formula works, the format of the field will need to be a string by putting single quotes inside the parentheses len(‘{0}’)

3 Likes

Jeez, I don’t know how I missed that. Thank you!