<?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 Arcade label Expression in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-label-expression/m-p/1309089#M71153</link>
    <description>&lt;P&gt;I am new to arcade and trying to create a labeling expression from two fields.&amp;nbsp; I have records with numerous fields but importantly RoadName and Road Number.&amp;nbsp; If RoadName contains a value the label with that, if RoadNumber contains a value then label with that, if both field have a value then use RoadName &amp;amp; " " &amp;amp; RoadNumber...&lt;/P&gt;&lt;P&gt;Is this possible and if so how.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 18 Jul 2023 14:38:36 GMT</pubDate>
    <dc:creator>AndyIngall</dc:creator>
    <dc:date>2023-07-18T14:38:36Z</dc:date>
    <item>
      <title>Arcade label Expression</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-label-expression/m-p/1309089#M71153</link>
      <description>&lt;P&gt;I am new to arcade and trying to create a labeling expression from two fields.&amp;nbsp; I have records with numerous fields but importantly RoadName and Road Number.&amp;nbsp; If RoadName contains a value the label with that, if RoadNumber contains a value then label with that, if both field have a value then use RoadName &amp;amp; " " &amp;amp; RoadNumber...&lt;/P&gt;&lt;P&gt;Is this possible and if so how.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 14:38:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-label-expression/m-p/1309089#M71153</guid>
      <dc:creator>AndyIngall</dc:creator>
      <dc:date>2023-07-18T14:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade label Expression</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-label-expression/m-p/1309117#M71159</link>
      <description>&lt;P&gt;Here's one way to do that.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var RoadName = $feature.RoadName;
var RoadNumber = $feature.RoadNumber ;
var output = '';

if (!IsEmpty(RoadName)) output = RoadName + ' ';
if (!IsEmpty(RoadNumber)) output += RoadNumber;
return Trim(output);&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 18 Jul 2023 15:21:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-label-expression/m-p/1309117#M71159</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-07-18T15:21:37Z</dc:date>
    </item>
  </channel>
</rss>

