Need to trim text to a maximum of 250 chars

I don’t see an Action which allows me to trim incoming text. This is regarding a freehand notes column which is used as a loose reference. The problem is infrequent, but we want to prevent the issue ahead of time.

Hi Christopher,

to trim a text value you can use the “Modify column” action with an expression that uses function left(). For instance:

left([Text], 250)

Thank you. I should have thought of that.