この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
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!
解決済! 解決策の投稿を見る。
トピックはコミュニティのコンテンツの分類に役立ち、関連コンテンツを発見する可能性を広げます。
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
表示
返信
いいね!の合計
表示
返信
いいね!の合計
Try this:
valueexpression=CONCAT(RIGHT({DE:Multimedia Notes},2100))
表示
返信
いいね!の合計
表示
返信
いいね!の合計
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),"...")
表示
返信
いいね!の合計