<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Arcade Labelling expression Help in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235556#M62738</link>
    <description>&lt;P&gt;I did use TylerT's suggestion but it turned out I had Stacking enabled which was casuing the issue it fixed as soon as I unchecked the box&lt;/P&gt;</description>
    <pubDate>Mon, 28 Nov 2022 18:48:10 GMT</pubDate>
    <dc:creator>WetlandMan</dc:creator>
    <dc:date>2022-11-28T18:48:10Z</dc:date>
    <item>
      <title>Arcade Labelling expression Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235540#M62728</link>
      <description>&lt;P&gt;Hi, I'm trying to generate a compound labelling expression where I have something like a town name, and then add in a second value followed by that value's label. I.e. I'd love for the label to read something like&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Portland&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5 d.u. / 1 acre&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I've written my expression as &lt;STRONG&gt;$feature.Town + textformatting.newline + $feature.ZoningStrictness + "d.u./ 1 acre"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;My labels are returning as:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Portland&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5d.u./ 1 acre&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If I change my expression to include:&lt;STRONG&gt; $feature.Town + textformatting.newline + $feature.ZoningStrictness + " " + "d.u./ 1 acre"&lt;/STRONG&gt; (adding a space before the d.u./1 acre) it changes my expression to:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Portland&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;d.u./ 1 acre&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to add a space but &lt;U&gt;not force&lt;/U&gt; a new line?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 18:40:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235540#M62728</guid>
      <dc:creator>WetlandMan</dc:creator>
      <dc:date>2022-11-28T18:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Labelling expression Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235550#M62734</link>
      <description>&lt;P&gt;I'd check your label settings. If you aren't specifically asking for a line break but are getting one, I would guess that you have something in the label settings for wrapping on characters, or else having a character limit before wrapping to a new line.&lt;/P&gt;&lt;P&gt;What happens if you write the whole thing in a template literal instead?&lt;/P&gt;&lt;PRE&gt;`${$feature.Town}&lt;BR /&gt;${$feature.ZoningStrictness} d.u./ 1 acre`&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Nov 2022 18:41:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235550#M62734</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-11-28T18:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Labelling expression Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235552#M62735</link>
      <description>&lt;P&gt;You could try a non-breaking white space character also.&amp;nbsp; See&amp;nbsp;&lt;A href="https://en.wikipedia.org/wiki/Non-breaking_space" target="_blank"&gt;https://en.wikipedia.org/wiki/Non-breaking_space&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Tyler&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 18:43:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235552#M62735</guid>
      <dc:creator>TylerT</dc:creator>
      <dc:date>2022-11-28T18:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Labelling expression Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235553#M62736</link>
      <description>&lt;P&gt;Give &lt;A href="https://developers.arcgis.com/arcade/guide/template-literals/" target="_self"&gt;template literals&lt;/A&gt; a try.&lt;/P&gt;&lt;LI-CODE lang="c"&gt;return `${$feature.Town}\n${$feature.ZoningStrictness} d.u. / 1 acre`&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 28 Nov 2022 18:44:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235553#M62736</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2022-11-28T18:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Labelling expression Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235554#M62737</link>
      <description>&lt;P&gt;Hmmm. I copy pasted your string and I got a break at the / so I believe it to be a text wrapping issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 18:44:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235554#M62737</guid>
      <dc:creator>WetlandMan</dc:creator>
      <dc:date>2022-11-28T18:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Labelling expression Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235556#M62738</link>
      <description>&lt;P&gt;I did use TylerT's suggestion but it turned out I had Stacking enabled which was casuing the issue it fixed as soon as I unchecked the box&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 18:48:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-labelling-expression-help/m-p/1235556#M62738</guid>
      <dc:creator>WetlandMan</dc:creator>
      <dc:date>2022-11-28T18:48:10Z</dc:date>
    </item>
  </channel>
</rss>

