We have a variable - 'longText' having a long list of characters and we want to trim the characters after a limit e.g. 130 characters, we can use below formula for the 'Text' property:
If(Len(longText)>130, Concatenate(Left(longText,130),"..."),longText)
No comments:
Post a Comment