You can apply column formatting to customize the display of fields in Modern SharePoint lists and libraries view by using JSON. The column formatting does not change the actual data in the list item or file, it only changes how the value is displayed to users in the user interface.
⛔️ Longer values truncated in SharePoint Modern List View experience

SharePoint List view - column value truncated
✔️ How to wrap long text values in SharePoint Modern experience for custom list
- Navigate to your modern SharePoint list view.
- Click on the column name.
- Click Column Settings.
- Click Format this column.
- A pane will open from right side of screen with title 'Format [Column Name] column'. Make sure 'Format columns' tab is selected and your column is selected in Choose Column drop down.
- Scroll to bottom and click Advanced mode.
- Copy and paste this JSON in the text box "Paste or type your column-formatting JSON here."
- Click Preview to check the display changes and make adjustments.
- Once comfortable, click Save.
- The changes will be reflected on the view.
- You can use similar JSON approach for formatting other column values.

SharePoint Online Modern experience - format column
{ "$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"style":{
"white-space":"wrap"
},
"txtContent": "@currentField"
}
CSS style for wrapping text --> "white-space":"wrap"

SharePoint - format column advanced mode

SharePoint column format - wrap text using json
⭐ Note that the JSON formatting changes only the display of column values on the UI. The column headers cannot be controlled and wrapped.
⭐ The JSON formatting changes apply to Grid View editing as well.
Comments:
- how to wrap the values for a people picker column? it shows [object].
14 Dec 2020 23:56:20 GMT
- I have a SPO list with some field headings that are long. Is there a way to force word wrapping only on the header?
13 Dec 2020 04:43:13 GMT
- Can I append values from different columns and show them as a hover card using JSON formatting ? including calculated fields
10 Dec 2020 16:12:34 GMT
- How to make a column read-only in custom SharePoint Online List view in quick edit?
10 Dec 2020 11:32:11 GMT
- Further comments disabled!
More Posts related to SharePoint,
- Managed Metadata error - The data returned from the tagging UI was not formatted correctly
- How to generate client id and secret to register SharePoint App with OAuth
- Create SharePoint Site Collection with new Content database in existing web application
- Fix Error 2711 SQL RBS client - The installer has encountered an unexpected error. The specified Feature name ('Docs') not found in Feature table
- How to exclude results from SharePoint Search
- 'Edit Document' Requires a Windows Sharepoint Services-compatible application and Microsoft Internet Explorer 6.0 or higher
- [Solved] SharePoint Access Denied error editing Document Name
- Recommended size and resolution for SharePoint Online Site logo
- SharePoint Server 2016 IT Preview - new improved Features and Enhancements
- Restore deleted Office 365 SharePoint group site
- SharePoint An unexpected error has occurred - Correlation ID and PowerShell Merge-SPlogfile
- [Solved] SharePoint Search Internal server error exception
- SharePoint CAML query error - The XML source is not correct
- How to hide quick launch in SharePoint classic site
- Not receiving email notification alert in SharePoint Online workflow - Power Automate, FLOW
- Change SharePoint search results FullTextSqlQuery RowLimit 10000
- Fix Power BI error Access to the resource is forbidden when connecting SharePoint Online List as data source
- [Fix] Restricted View permission level missing in SharePoint Online site library
- How to upload file programmatically to SharePoint Document Library using Server Object Model C# .Net
- How to create classic site in SharePoint Online
- That did'nt work, Issue type User not in directory - SharePoint external access error
- Merge-SPlogfile PowerShell - SharePoint Correlation ID error
- Fix Power BI 404 not found error when connecting SharePoint Online List as Data Source
- SharePoint Server 2016 IT Preview Deprecated Removed features
- SharePoint error - An exception occurred when trying to issue security token: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms..
More Posts:
- incorrect line ending: found carriage return (\r) without corresponding newline (\n) - Android
- Upload Pdf file using PHP Script - PHP
- Fix zsh: permission denied: script.sh - zsh
- 3 Commands to stop Nginx Server - Linux
- Steps to Compare Two files in Sublime Text Side-by-Side - Sublime-Text
- Android : IOException: Unable to open sync connection! - Android
- Send Email using SharePoint PowerShell command, SMTP server - SharePoint
- How to install pip on macOS using terminal command [Python] - Python