Does anyone know if we can set a character limit in text fields? I don't currently see that function. Thank you.
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
You cannot change the character limits on fields. There are some ways to report on them though.
Here are some examples of adding calculated fields to custom forms https://experienceleaguecommunities.adobe.com/t5/workfront-questions/resrict-data-field-character-co...
I've also created text mode columns in reporting that will show this as well:
displayname=Column Name
valueexpression=CONCAT(LEN({description}),"/max character")
valueformat=HTML
Or Display a message:
displayname=Column Name
valueexpression=IF(LEN({your field name})>100,"This is too long",CONCAT(LEN({your field name}),"/your max character count"))
valueformat=HTML
조회 수
답글
좋아요 수
Hi there, this article has what you're looking for I believe! This shows the limits but to answer your question, you cannot modify the limits.
조회 수
답글
좋아요 수
조회 수
답글
좋아요 수
You cannot change the character limits on fields. There are some ways to report on them though.
Here are some examples of adding calculated fields to custom forms https://experienceleaguecommunities.adobe.com/t5/workfront-questions/resrict-data-field-character-co...
I've also created text mode columns in reporting that will show this as well:
displayname=Column Name
valueexpression=CONCAT(LEN({description}),"/max character")
valueformat=HTML
Or Display a message:
displayname=Column Name
valueexpression=IF(LEN({your field name})>100,"This is too long",CONCAT(LEN({your field name}),"/your max character count"))
valueformat=HTML
조회 수
답글
좋아요 수
That makes sense, Kellie. Thanks so much!
조회 수
답글
좋아요 수
I used this one for a field limitation in custom forms:
IF(
LEN({DE:NAMEOFFIELD}) > 65,
"Error: Text exceeds 65 characters")
조회 수
답글
좋아요 수