<?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: Have one string for multiple instersected attributes from the same location in a popup via Arcade element in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325014#M54341</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp; Happy Friday,&lt;/P&gt;&lt;P&gt;Hope all is well; So when I add Address next to counter, the code also outputs it multiple times as in the screenshot below. Is there a way to have the Address string to appear only once even if there are more than one address?&lt;BR /&gt;&lt;BR /&gt;Current code:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// Create a variable that is the FeatureSet of intersecting feature attributes
var Parcels = FeatureSetByname($map,"PARCEL")

// Create a new variable for address layer, this layer also intersects the parcel layer
var address = FeatureSetByname($map,"ADDRESS")

var intersectLayer = Intersects(address,$feature)

// First heading
var popup = '&amp;lt;h3&amp;gt;Property Summary&amp;lt;/h3&amp;gt;';

var counter = 1;


for (var f in intersectLayer){
popup += `&amp;lt;b&amp;gt;Address:&amp;lt;/b&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;${counter}) ${f.FullAddress} &amp;lt;br&amp;gt;`;

counter++;

}



popup += `&amp;lt;b&amp;gt;PIN:&amp;lt;/b&amp;gt; ${$feature.PIN} &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

&amp;lt;b&amp;gt;Tract#:&amp;lt;/b&amp;gt; ${$feature.TRACT} &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

&amp;lt;b&amp;gt;Block:&amp;lt;/b&amp;gt; ${$feature.BLOCK} &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

&amp;lt;b&amp;gt;ARB:&amp;lt;/b&amp;gt; ${$feature.ARB} &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;

&amp;lt;b&amp;gt;BPP:&amp;lt;/b&amp;gt; ${$feature.BPP} &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;

&amp;lt;b&amp;gt;LOT#:&amp;lt;/b&amp;gt; ${$feature.LOT} &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;

`

return {
type : 'text',
text : popup  
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current output:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SaadullahBaloch_0-1693609892109.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/79737i0477D01C6EA34414/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SaadullahBaloch_0-1693609892109.png" alt="SaadullahBaloch_0-1693609892109.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Sep 2023 23:11:47 GMT</pubDate>
    <dc:creator>Ed_</dc:creator>
    <dc:date>2023-09-01T23:11:47Z</dc:date>
    <item>
      <title>Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324070#M54256</link>
      <description>&lt;P&gt;So I am trying to pull attributes from an intersected layer in a single popup. In certain popups however, there are for example 3 layers that overlay one another in the same location. Basically 3 address points thus 3 addresses as shown in the screenshot below.&lt;BR /&gt;&lt;BR /&gt;Now is there a way I can have the Address: string to appear only once?&lt;BR /&gt;Also is it possible to adding numbering to the addresses (if more than 1 address is present) as shown in the desired output?&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;please when you have the time, can you have a look at it? Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Current output (please ignore the blue color that's just due to the mouse selection):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SaadullahBaloch_0-1693424450957.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/79498i82338CFD4C59C507/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SaadullahBaloch_0-1693424450957.png" alt="SaadullahBaloch_0-1693424450957.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Desired output:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Property Summary&lt;BR /&gt;&lt;BR /&gt;Address:&amp;nbsp;&lt;/STRONG&gt;1) 3452 W ESFIE ST 90026&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2) 3450 W EFIE ST 90026&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3) 3448 W EFIE ST 90026&lt;BR /&gt;&lt;BR /&gt;Code:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// Create a variable that is the FeatureSet of intersecting feature attributes
var Address = FeatureSetByName($map, "ADDRESS")

var intersectLayer = Intersects(Address, $feature)

// This variable will be used multiple times in the code
var popup = '&amp;lt;h3&amp;gt;Property Summary&amp;lt;/h3&amp;gt;';

for (var f in intersectLayer){

 popup += `&amp;lt;b&amp;gt;Address:&amp;lt;/b&amp;gt; ${f.FullAddress} &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

 `

}

// Now bring in the attributes from the next intersected layer

return { 
  type : 'text', 
  text : popup
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 20:01:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324070#M54256</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2023-08-30T20:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324091#M54257</link>
      <description>&lt;P&gt;Here's one way to do that. Unfortunately, the Arcade element strips out leading spaces, so everything gets left justified.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var Address = FeatureSetByName($map, "ADDRESS");
var intersectLayer = Intersects(Address, $feature);
var popup = '&amp;lt;h3&amp;gt;Property Summary&amp;lt;/h3&amp;gt;&amp;lt;b&amp;gt;Addresses:&amp;lt;/b&amp;gt;';
var counter = 1;
for (var f in intersectLayer){
  popup += `${counter}) ${f.FullAddress}&amp;lt;br&amp;gt;`;
  counter++;
}

return { 
  type : 'text', 
  text : popup
}&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 30 Aug 2023 20:21:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324091#M54257</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-08-30T20:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324098#M54258</link>
      <description>&lt;P&gt;Awesome, thank you so much Ken &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 20:27:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324098#M54258</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2023-08-30T20:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324107#M54261</link>
      <description>&lt;P&gt;Wait, I was incorrect about stripping leading spaces. The only way I was able to add leading spaces is using "&amp;amp;nbsp" for each space&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;popup += `&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp${counter}) ${f.FullAddress}&amp;lt;br&amp;gt;`;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 20:34:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324107#M54261</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-08-30T20:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324140#M54273</link>
      <description>&lt;P&gt;I don't know if the ESRI forum software stripped it out of his reply but I would add a semi-colon to Ken's solution in the appropriate spot so it should be like this:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;popup += `&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;${counter}) ${f.FullAddress}&amp;lt;br&amp;gt;`;&lt;/LI-CODE&gt;&lt;P&gt;It may work without the semi-colon but it's not suggested that you do so (&lt;A href="https://www.w3.org/TR/html4/charset.html#h-5.3" target="_blank" rel="noopener"&gt;link&lt;/A&gt;).&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 21:27:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324140#M54273</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2023-08-30T21:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324145#M54275</link>
      <description>&lt;P&gt;Awesome thank you so much for the update Ken &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 21:41:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324145#M54275</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2023-08-30T21:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324148#M54276</link>
      <description>&lt;P&gt;Nice, thank you for pointing that out Steve &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 23:41:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1324148#M54276</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2023-08-30T23:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325014#M54341</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp; Happy Friday,&lt;/P&gt;&lt;P&gt;Hope all is well; So when I add Address next to counter, the code also outputs it multiple times as in the screenshot below. Is there a way to have the Address string to appear only once even if there are more than one address?&lt;BR /&gt;&lt;BR /&gt;Current code:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// Create a variable that is the FeatureSet of intersecting feature attributes
var Parcels = FeatureSetByname($map,"PARCEL")

// Create a new variable for address layer, this layer also intersects the parcel layer
var address = FeatureSetByname($map,"ADDRESS")

var intersectLayer = Intersects(address,$feature)

// First heading
var popup = '&amp;lt;h3&amp;gt;Property Summary&amp;lt;/h3&amp;gt;';

var counter = 1;


for (var f in intersectLayer){
popup += `&amp;lt;b&amp;gt;Address:&amp;lt;/b&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;${counter}) ${f.FullAddress} &amp;lt;br&amp;gt;`;

counter++;

}



popup += `&amp;lt;b&amp;gt;PIN:&amp;lt;/b&amp;gt; ${$feature.PIN} &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

&amp;lt;b&amp;gt;Tract#:&amp;lt;/b&amp;gt; ${$feature.TRACT} &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

&amp;lt;b&amp;gt;Block:&amp;lt;/b&amp;gt; ${$feature.BLOCK} &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

&amp;lt;b&amp;gt;ARB:&amp;lt;/b&amp;gt; ${$feature.ARB} &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;

&amp;lt;b&amp;gt;BPP:&amp;lt;/b&amp;gt; ${$feature.BPP} &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;

&amp;lt;b&amp;gt;LOT#:&amp;lt;/b&amp;gt; ${$feature.LOT} &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;

`

return {
type : 'text',
text : popup  
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current output:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SaadullahBaloch_0-1693609892109.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/79737i0477D01C6EA34414/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SaadullahBaloch_0-1693609892109.png" alt="SaadullahBaloch_0-1693609892109.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 23:11:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325014#M54341</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2023-09-01T23:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325392#M54360</link>
      <description>&lt;P&gt;Change your code to this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;popup += `&amp;lt;b&amp;gt;Address:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;`;
for (var f in intersectLayer){
  popup += `&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;${counter}) ${f.FullAddress} &amp;lt;br&amp;gt;`;
  counter++;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 13:52:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325392#M54360</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-09-05T13:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325461#M54367</link>
      <description>&lt;P&gt;Happy Monday Ken.&lt;BR /&gt;&lt;BR /&gt;Ah yes, this way it becomes a subheading :).&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 16:05:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325461#M54367</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2023-09-05T16:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325656#M54381</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a question please, is it possible to show the counter_value) to show only if there are more than two addresses?&lt;BR /&gt;&lt;BR /&gt;Let's say there's only one address associated with a feature then the output would look something like this:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Address:&lt;BR /&gt;&lt;/STRONG&gt;Some_Street_Address&lt;BR /&gt;&lt;BR /&gt;However if a feature has two or more addresses then the output would look like this:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Address:&lt;BR /&gt;&lt;/STRONG&gt;1) Some_Street_Address1&lt;BR /&gt;2) Some_Street_Address2&lt;BR /&gt;3) Some_Street_Address3&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 22:01:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325656#M54381</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2023-09-05T22:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325822#M54392</link>
      <description>&lt;P&gt;You just have to put in a if statement to check whether there is more than one address.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;popup += `&amp;lt;b&amp;gt;Address:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;`;
if (Count(intersectLayer) == 1) {
  popup += `&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;${First(intersectLayer).FullAddress} &amp;lt;br&amp;gt;`;
} else {
  var counter = 1;
  for (var f in intersectLayer){
    popup += `&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;${counter}) ${f.FullAddress} &amp;lt;br&amp;gt;`;
    counter++;
  }
}&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 06 Sep 2023 12:40:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325822#M54392</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-09-06T12:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Have one string for multiple instersected attributes from the same location in a popup via Arcade element</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325894#M54399</link>
      <description>&lt;P&gt;Good morning&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;, hope all is well, oh I see, I was actually using an `if` statement on just the `counter variable`, so that's why it wasn't working.&lt;BR /&gt;&lt;BR /&gt;Thank you sharing that &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 14:21:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/have-one-string-for-multiple-instersected/m-p/1325894#M54399</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2023-09-06T14:21:06Z</dc:date>
    </item>
  </channel>
</rss>

