Hi community, we have a custom field in a task custom form to capture notes. Is there a way to only display the last xxxx number of characters entered, and not the whole content entered in the field? as more notes get entered, it is getting quite long when it displays in a report.
I know how to do that on the Last Note - Note Text from the updates, but cannot figure out in a custom field.
Thank you!
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Update: use this valueexpressionfor first x characters:
valueexpression=CONCAT(LEFT({DE:Custom Field},100),"...")
_______
Here is code I have for one of my custom fields, let me know if this works for you. Just replace the 5 instances of KR Status Rationale to be your custom field name.
displayname=
linkedname=direct
namekey=KR Status Rationale
querysort=DE:KR Status Rationale
textmode=true
valueexpression=IF(LEN({DE:KR Status Rationale})>140, CONCAT(SUBSTR({DE:KR Status Rationale},0,139),"..."))
valuefield=KR Status Rationale
valueformat=HTML
Views
Replies
Total Likes
Views
Replies
Total Likes
Try this:
valueexpression=CONCAT(RIGHT({DE:Multimedia Notes},2100))
Views
Replies
Total Likes
Views
Replies
Total Likes
Just wanted to update my code that I provided for the first x characters, since I found a new way using left instead of SUBSTR:
valueexpression=CONCAT(LEFT({DE:Custom Field},100),"...")
Views
Replies
Total Likes
Views
Likes
Replies