Using text mode to concatenate custom rich text field in a report? getting error message
I have a custom rich text field called /Request notes'. I want to include it in a report, but concatenate it so only the first 200 characters are shown. When I try to do this by using text mode and replacing 'valueifled' with 'valuexpression' like I do with other fields I get an error message when loading the report. Do I have to do something different because this is a rich text field?
Here's what I've tried that results in an error:
valueexpression=IF(LEN({Request notes})>150,CONCAT(LEFT({Request notes},150)," (cont...)"),{Request notes})
valueformat=customDataRichTextAsString
linkedname=direct
namekey=Request notes
tile.name=component.customdata.richtextlistview
type=tile
Thank you in advance for your help!