Hi @Michael Boudreau,
Thank you for posting in this community.
Since the Multiline Text column can store up to 63,999 characters, SharePoint collapses the contents of the column by default. You can try using JSON to modify the style of the column display. It will display everything in the column adaptively based on the length of your column's content.
Here are steps:
1.Select one column > Column settings > Format this column.
2.Select Advanced mode and copy the following JSON code. Click Save when you are done.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"txtContent": "@currentField",
"style": {
"white-space": "normal",
"padding": "10px 0"
}
}
Here is the result:
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.