i will combine:
LEN({Long Text})
+
IF(LEN({Long Text})>280, “ :x: Over Limit”, “ :white_check_mark: Under Limit”)
The result should be: example: 150 :white_check_mark: Under Limit
i will combine:
LEN({Long Text})
+
IF(LEN({Long Text})>280, “ :x: Over Limit”, “ :white_check_mark: Under Limit”)
The result should be: example: 150 :white_check_mark: Under Limit
Best answer by Kamille_Parks11
Put an ampersand between the two formulas. I’ll assume you want to include a space between the number and the checkmark/X so in this case you would add & " " &:
LEN({Long Text}) & " " & IF(LEN({Long Text})>280, ":x:Over Limit", ":white_check_mark:Under Limit")
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.