Forum Discussion
SG523
Feb 23, 2022Copper Contributor
Multiline column turn off wrap text
I have a column of multiline text because some needs are longer than the 255 single line limit. The problem is I only need the data for some other operations and it makes the row very tall. Is there ...
- Feb 24, 2022
SG523 there isn't a setting for it but you can format the column with JSON to remove the wrap and just display the first line:
{ "$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json", "elmType": "div", "txtContent": "@currentField", "style": { "white-space": "nowrap" } }
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)
RobElliott
Feb 24, 2022Silver Contributor
SG523 there isn't a setting for it but you can format the column with JSON to remove the wrap and just display the first line:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"txtContent": "@currentField",
"style": {
"white-space": "nowrap"
}
}
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)
SG523
Feb 24, 2022Copper Contributor
That worked perfect, thank you!