<?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 label expression for displaying suite numbers in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281502#M13979</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhanu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you able to share the web map?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Kelly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Nov 2017 01:11:58 GMT</pubDate>
    <dc:creator>KellyGerrow</dc:creator>
    <dc:date>2017-11-28T01:11:58Z</dc:date>
    <item>
      <title>Arcade label expression for displaying suite numbers</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281499#M13976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm working on arcade label expression to show suite numbers vs the civic number if its a condo complex.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could not figure out what's wrong with my expression, but the same logic expression works in arc map.&lt;/P&gt;&lt;P&gt;any insight will be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression is :&lt;/P&gt;&lt;P dir="ltr"&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; IIf(IsEmpty($feature.UNIT_NUM), $feature.CIVIC_NUM, $feature.UNIT_NUM)&lt;/P&gt;&lt;P dir="ltr" style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P dir="ltr"&gt;VB Label expression in arcmap is :&lt;/P&gt;&lt;P dir="ltr" style="padding-left: 30px;"&gt;Function FindLabel ( [CIVIC_NUM], [UNIT_NUM] )&lt;BR /&gt; if ( [UNIT_NUM] &amp;lt;&amp;gt; "&amp;lt;Null&amp;gt;" ) then&lt;BR /&gt; FindLabel = [UNIT_NUM] &lt;BR /&gt; else&lt;BR /&gt; FindLabel = [CIVIC_NUM] &lt;BR /&gt;end if&lt;BR /&gt;End Function&lt;/P&gt;&lt;P dir="ltr"&gt;&lt;/P&gt;&lt;P dir="ltr"&gt;Would any be able to shed some light on how to achieve this.&lt;/P&gt;&lt;P dir="ltr"&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2017 21:28:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281499#M13976</guid>
      <dc:creator>BPriyaK</dc:creator>
      <dc:date>2017-11-15T21:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade label expression for displaying suite numbers</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281500#M13977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just wondering, does the field UNIT_NUM contain a string "&amp;lt;Null&amp;gt;" or is it really empty? If it is empty you van use this and see what it does. The Console statements will print the values to the console and allows you to check if it is correct:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; CivicNum &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CIVIC_NUM&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; UnitNum &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;UNIT_NUM&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token function"&gt;Console&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"CIVIC_NUM:"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; CivicNum&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token function"&gt;Console&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"UNIT_NUM :"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; UnitNum&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; label &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Err"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;UnitNum &lt;SPAN class="operator token"&gt;!=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;null&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; label &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; UnitNum&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; label &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; CivicNum&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; label&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:38:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281500#M13977</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T13:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade label expression for displaying suite numbers</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281501#M13978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!1&lt;/P&gt;&lt;P&gt;I tried the expression but still no luck!!&lt;/P&gt;&lt;P&gt;It labels only the unit numbers but not he civic's when unit numbers are null.&lt;/P&gt;&lt;P&gt;Also, The unit number field has empty values and not string &amp;lt;Null&amp;gt;.&lt;/P&gt;&lt;P&gt;Tried the expression condition to &amp;lt;No value&amp;gt; as that's what the detailed view shows on ArcGIS Online item details.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2017 16:40:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281501#M13978</guid>
      <dc:creator>BPriyaK</dc:creator>
      <dc:date>2017-11-22T16:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade label expression for displaying suite numbers</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281502#M13979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhanu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you able to share the web map?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Kelly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 01:11:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281502#M13979</guid>
      <dc:creator>KellyGerrow</dc:creator>
      <dc:date>2017-11-28T01:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade label expression for displaying suite numbers</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281503#M13980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kelly,&lt;/P&gt;&lt;P&gt;here is a link to the web map&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://airdrie.maps.arcgis.com/home/item.html?id=0357842fa6ba41e490a3ed40a3c5ebb8" title="https://airdrie.maps.arcgis.com/home/item.html?id=0357842fa6ba41e490a3ed40a3c5ebb8"&gt;https://airdrie.maps.arcgis.com/home/item.html?id=0357842fa6ba41e490a3ed40a3c5ebb8&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an expression as mentioned above in the map as Address Label.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for taking time to look into this&lt;/P&gt;&lt;P&gt;appreciate it !!&lt;/P&gt;&lt;P&gt;Bhanu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 18:01:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281503#M13980</guid>
      <dc:creator>BPriyaK</dc:creator>
      <dc:date>2017-11-28T18:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade label expression for displaying suite numbers</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281504#M13981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhanu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The blank value of your unit numbers is a space and not a null value. If you change null to " " the labels will appear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="" style="color: #0077aa; border: 0px; font-weight: inherit; font-size: 14px;"&gt;var&lt;/SPAN&gt; CivicNum &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit; font-size: 14px;"&gt;=&lt;/SPAN&gt; $feature&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;.&lt;/SPAN&gt;CIVIC_NUM&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="" style="color: #0077aa; border: 0px; font-weight: inherit; font-size: 14px;"&gt;var&lt;/SPAN&gt; UnitNum &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit; font-size: 14px;"&gt;=&lt;/SPAN&gt; $feature&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;.&lt;/SPAN&gt;UNIT_NUM&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="" style="color: #d74444; border: 0px; font-weight: inherit; font-size: 14px;"&gt;Console&lt;/SPAN&gt;&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #669900; border: 0px; font-weight: inherit; font-size: 14px;"&gt;"CIVIC_NUM:"&lt;/SPAN&gt; &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit; font-size: 14px;"&gt;+&lt;/SPAN&gt; CivicNum&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="" style="color: #d74444; border: 0px; font-weight: inherit; font-size: 14px;"&gt;Console&lt;/SPAN&gt;&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #669900; border: 0px; font-weight: inherit; font-size: 14px;"&gt;"UNIT_NUM :"&lt;/SPAN&gt; &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit; font-size: 14px;"&gt;+&lt;/SPAN&gt; UnitNum&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="" style="color: #0077aa; border: 0px; font-weight: inherit; font-size: 14px;"&gt;var&lt;/SPAN&gt; label &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit; font-size: 14px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="" style="color: #669900; border: 0px; font-weight: inherit; font-size: 14px;"&gt;"Err"&lt;/SPAN&gt;&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="" style="color: #0077aa; border: 0px; font-weight: inherit; font-size: 14px;"&gt;if&lt;/SPAN&gt; &lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;(&lt;/SPAN&gt;UnitNum &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit; font-size: 14px;"&gt;!=&lt;/SPAN&gt; &lt;SPAN class="" style="color: #0077aa; border: 0px; font-weight: inherit; font-size: 14px;"&gt;" "&lt;/SPAN&gt;&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;)&lt;/SPAN&gt; &lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; label &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit; font-size: 14px;"&gt;=&lt;/SPAN&gt; UnitNum&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;}&lt;/SPAN&gt; &lt;SPAN class="" style="color: #0077aa; border: 0px; font-weight: inherit; font-size: 14px;"&gt;else&lt;/SPAN&gt; &lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; label &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit; font-size: 14px;"&gt;=&lt;/SPAN&gt; CivicNum&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="" style="color: #0077aa; border: 0px; font-weight: inherit; font-size: 14px;"&gt;return&lt;/SPAN&gt; label&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit; font-size: 14px;"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://arcg.is/0WGn9u" title="https://arcg.is/0WGn9u" rel="nofollow noopener noreferrer" target="_blank"&gt;https://arcg.is/0WGn9u&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Kelly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:38:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281504#M13981</guid>
      <dc:creator>KellyGerrow</dc:creator>
      <dc:date>2021-12-11T13:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade label expression for displaying suite numbers</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281505#M13982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is fantastic !!&lt;/P&gt;&lt;P&gt;Thank you so much for your insight and helping me figure what the error was .&lt;/P&gt;&lt;P&gt;Thanks again !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 19:07:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281505#M13982</guid>
      <dc:creator>BPriyaK</dc:creator>
      <dc:date>2017-11-28T19:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade label expression for displaying suite numbers</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281506#M13983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That explains why I couldn't filter values that are blank ,as it had the space all along .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 19:10:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281506#M13983</guid>
      <dc:creator>BPriyaK</dc:creator>
      <dc:date>2017-11-28T19:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade label expression for displaying suite numbers</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281507#M13984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/170949"&gt;Bhanu Vedula&lt;/A&gt;&amp;nbsp;, glad that&amp;nbsp;&lt;A href="https://community.esri.com/people/KGerrow-esristaff"&gt;KGerrow-esristaff&lt;/A&gt;&amp;nbsp;could resolve your problem. Can you mark her answer as the correct one?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 19:48:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-label-expression-for-displaying-suite/m-p/281507#M13984</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2017-11-28T19:48:06Z</dc:date>
    </item>
  </channel>
</rss>

