Hi Amber, Great question, and one I'm happy to help with. I was able to use the ""https://wf-pro.com/textmode/text-mode-views/#latest-update" Latest Update " text mode example on the WFPro site as a starting point for the code examples below. My original example hadn't accounted for assignment reports, so I'm glad you brought this up. Here's the code that you can use to grab the first 139 characters of the latest update on an issue or task, depending on what you need. You can change the value to a larger number if you prefer. There's also the "https://wf-pro.com/textmode/text-mode-views/#latest-update-icon-hover" Latest Update w/ Icon example, which I'm sure could be adjusted to work on a notes report with some adjustments. valueexpression=IF(LEN({task}.{lastNote}.{noteText})> 140 , CONCAT(SUBSTR({task}.{lastNote}.{noteText},0, 139 ),"...(open for more) -- ",{task}.{lastNote}.{owner}.{name}," on ", {task}.{lastNote}.{entryDate}), IF(LEN({task}.{lastNote}.{noteText})>0, CONCAT({task}.{lastNote}.{noteText}," -- ", {task}.{lastNote}.{owner}.{name}," on ", {task}.{lastNote}.{entryDate}))) textmode=true valueformat=HTML displayname= Latest Update on Task namekey=latest update valueexpression=IF(LEN({opTask}.{lastNote}.{noteText})> 140 , CONCAT(SUBSTR({opTask}.{lastNote}.{noteText},0, 139 ),"...(open for more) -- ",{opTask}.{lastNote}.{owner}.{name}," on ", {opTask}.{lastNote}.{entryDate}), IF(LEN({opTask}.{lastNote}.{noteText})>0, CONCAT({opTask}.{lastNote}.{noteText}," -- ", {opTask}.{lastNote}.{owner}.{name}," on ", {opTask}.{lastNote}.{entryDate}))) textmode=true valueformat=HTML displayname= Latest Update on Issue namekey=latest update