How to stop record data from being truncated when previewing report, viewing in list, or viewing dashboardIssue When viewing a report, list, or dashboard, the text of one of the fields is truncated. You can hover over it and see the text and it also appears when exporting to pdf, but it is not visible when viewing it.CauseBy default, the UI Properties setting: Number of characters displayed in list cells is set to 40. This can cause data truncation for record values longer than that.ResolutionThere are 2 possible resolutions. One is to change the UI property for the length of characters displayed. Go to UI PropertiesChange the property: "Number of characters displayed in list cells" from 40 to a higher number Note that this affects all fields system wide. If that is not optimal then use the second option. The second is to add no_truncate to the dictionary of the field you wish to view the entirety of. View the report or tableRight click on the column header of the field and select Configure|DictionarySearch for the field you want to no longer truncateOpen the recordScroll down and open the Dictionary Overrides tabSelect New (assuming an override does not already exist for the field)Change the table drop down to the one you want to affect the override onCheck the overrides attributes checkboxFrom the top of the page, copy and paste any existing Attributes listedAt the end of the list add a comma, then add no_truncate=trueSo it will look like this: existingAttribute1,existingAttribute2,no_truncate=trueSave The field should now no longer truncate when viewing.