HOW TO
In ArcGIS Pro, multiline labels with concatenated text (string) can be created using the Arcade label expression. In this article, the Schools layer contains information on schools in Florida, such as city, ZIP Code, and type of school, as shown in the attribute table below.
The workflow provided describes how to create multiline labels displaying the CITY, ZIPCODE, and TYPE field values using the TextFormatting.NewLine constant and concatenate the text preceding each field value.
Note: The TextFormatting.NewLine constant inserts a line break between the labels.
The code block below shows the full expression used.
'City:' + $feature.CITY + TextFormatting.NewLine + 'ZIP Code:' + $feature.ZIPCODE + TextFormatting.NewLine + 'Type:'+$feature.TYPE
The map displays the distribution of schools in Florida, labeled with their respective city name, ZIP Code, and school type on separate lines.
Get help from ArcGIS experts
Download the Esri Support App