This message was deleted.
# questions
b
This message was deleted.
s
If it's Airtable (Edit: Or Stacker Tables!) you can use
LEFT({Long Text}, 200) & '...'
(the '...' is just to make it clear that it's truncated)
Edit: The below script will work for Airtable to make the truncated text not cut off a word halfway through:
IF(
LEN({Long Text}) > 200,
LEFT(
{Long Text},
FIND(" ", {Long Text}, 190)
)  & "...",
{Long Text}
)
c
ah got it - so I’d have to have that as a second field to show in the table. Got it