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,
- error CAML Query containing special characters
- [Solved] SharePoint Illegal operation attempted on a registry key that has been marked for deletion
- Trigger Flow on selected Listitem from SharePoint view - create button with JSON column formatting
- SharePoint Excel error - The workbook cannot be opened because it contains the following features that are not supported by Excel in the browser
- Send Email with attachment using SharePoint PowerShell, SMTP server
- How to show or hide columns in SharePoint Online List Library from
- SharePoint excel error - A problem occurred while connecting to the server. If the problem continues, contact your administrator.
- How to get SharePoint Online user details from person or group column using REST API
- How to get SharePoint List Item URL using PowerShell
- How to get the SharePoint Tenant Login URL
- Special character & not working with SharePoint REST API
- How to disable SharePoint subsite creation option for owners
- Managed Metadata error - The data returned from the tagging UI was not formatted correctly
- Deploy SharePoint wsp solution package using PowerShell
- How to create classic site in SharePoint Online
- See actual SharePoint error exception modify web.config
- 'Edit Document' Requires a Windows Sharepoint Services-compatible application and Microsoft Internet Explorer 6.0 or higher
- How to enable anonymous public access for SharePoint Online site collection, file, folder without login ?
- SharePoint installation error - Setup is unable to proceed due to the following error This product requires Microsoft .Net Framework 4.5
- How to add animated Gif to SharePoint Online Page
- [Solved] SharePoint Search Internal server error exception
- How to create SharePoint Document Library
- SharePoint - Use Today's Date Time in list view filter and calculated column
- How to redirect SharePoint Site Collection to different URL
- SharePoint error cannot connect to the configuration database
More Posts:
- Ways to Convert Integer or int to Long in Java - Java
- StringJoiner Example with Java Collections - Java
- How to install Python 2.7.xx on macOS 12.3 Monterey or higher - Python
- Drop table using Java JDBC Template - Java
- Iterate over an Array using Java 8 Stream and foreach - Java
- Fahrenheit to Celsius Temperature Convertor: Tool & Formula - Tools
- How to update all installed packages at once in Ubuntu - Ubuntu
- How to install Android Studio Chipmunk and SDK tools on macOS (2021.2) - Android-Studio