<?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: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143075#M7045</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;apologies,&amp;nbsp; I added the default value string before the return line.&amp;nbsp; Change to what you would like the value to be.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;var material = $feature["material"];
var materialLabel = When(
material == 0,"Unknown",
material == 13,"Aluminum",
material == 14,"Steel",
material == 15,"Cast Iron",
material == 16,"Plastic",
'defaultValue')
return materialLabel&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 07:52:42 GMT</pubDate>
    <dc:creator>ChrisWiebke</dc:creator>
    <dc:date>2021-12-11T07:52:42Z</dc:date>
    <item>
      <title>Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143063#M7033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the ArcGIS online map I would like to customize the pop-ups to show only specific data from the attributes.&amp;nbsp; The map I am working on shows parks, and in the pop up window i would like to list available amenities in each park. The problem is that in the attribute table each amenity correspond to the specific field, and the values are Yes/No for the amenities (image from attribute included below).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know what I am trying to do, but I don't know how to accomplish it:&lt;/P&gt;&lt;P&gt;Basically I would like to write the HTML 'if/else' statement in the pop-up, do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if 'Camping Available' = Yes&lt;/P&gt;&lt;P&gt;&amp;nbsp; return 'Camping'&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;return (nothing)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would have to do it for each field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if anyone has done it with the pop-ups in ArcGIS online, but I would appreciated any suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the link to my map: &lt;A href="http://omaha.maps.arcgis.com/home/webmap/viewer.html?webmap=a72a92754ef4400e8a79116d68ccb93d" title="http://omaha.maps.arcgis.com/home/webmap/viewer.html?webmap=a72a92754ef4400e8a79116d68ccb93d"&gt;http://omaha.maps.arcgis.com/home/webmap/viewer.html?webmap=a72a92754ef4400e8a79116d68ccb93d&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="126175" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/126175_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 21:00:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143063#M7033</guid>
      <dc:creator>NataliyaLys</dc:creator>
      <dc:date>2015-09-09T21:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143064#M7034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I handle this type of thing by preconstructing an html snippet for the feature that can be used in the popup. I do it using a python script that loops through the features, and assembles the snippet, and writes it into a new field. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 15:17:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143064#M7034</guid>
      <dc:creator>NathanielRoth1</dc:creator>
      <dc:date>2015-09-10T15:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143065#M7035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. My co-worker mentioned that he could probably do something like that with python. I was hoping to do it interactively in the pop-up without modifying my schema, but if I don't get anywhere with html/javascript, I might have to go python route. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 15:39:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143065#M7035</guid>
      <dc:creator>NataliyaLys</dc:creator>
      <dc:date>2015-09-10T15:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143066#M7036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nataliya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to do the same thing, did you ever get it solved with javascript or did you have to use the pre-constructed schema change?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jake&lt;/P&gt;&lt;P&gt;Denver, CO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 23:22:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143066#M7036</guid>
      <dc:creator>deleted-user-7UNnYoN7RMBl</dc:creator>
      <dc:date>2015-09-24T23:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143067#M7037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jacob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, I didn't get it to work with javascript. I am planning to do the schema change. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 15:37:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143067#M7037</guid>
      <dc:creator>NataliyaLys</dc:creator>
      <dc:date>2015-09-25T15:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143068#M7038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nataliya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sounds like building an &lt;A href="https://developers.arcgis.com/arcade/"&gt;Arcade Expression&lt;/A&gt; would suit your needs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out the related &lt;A href="https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/use-arcade-expressions-to-map-your-ideas/"&gt;blog posting&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kyle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2018 15:35:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143068#M7038</guid>
      <dc:creator>KyleBalke__GISP</dc:creator>
      <dc:date>2018-09-27T15:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143069#M7039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IIf($feature.Field == "Camping", "Camping", "")&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2019 18:43:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143069#M7039</guid>
      <dc:creator>ChrisWiebke</dc:creator>
      <dc:date>2019-02-01T18:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143070#M7040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it working with Arcade.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2019 19:10:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143070#M7040</guid>
      <dc:creator>NataliyaLys</dc:creator>
      <dc:date>2019-02-01T19:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143071#M7041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2019 19:11:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143071#M7041</guid>
      <dc:creator>NataliyaLys</dc:creator>
      <dc:date>2019-02-01T19:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143072#M7042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;What if we have multiple attributes in a field, how can we combine all below in one statement/expression?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;IIf($feature.Material == 10, "Steel", "")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;IIf($feature.Material == 11, "Aluminum", "")&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;IIf($feature.Material == 12, "Plastic", "")&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;The statement like below doesn't work for me.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;IIf($feature.Material == 10, "Steel", IIf($feature.Material == 11, "Aluminum", ""))&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Hassan&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2019 16:30:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143072#M7042</guid>
      <dc:creator>HassanMuhammad</dc:creator>
      <dc:date>2019-07-29T16:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143073#M7043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try adding this expression:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;var material = $feature["FieldName"];
var materialLabel = When(
material == 10,"Steel",
material == 11,"Aluminum",
material == 12,"Plastic")
return materialLabel‍‍‍‍‍‍&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:52:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143073#M7043</guid>
      <dc:creator>ChrisWiebke</dc:creator>
      <dc:date>2021-12-11T07:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143074#M7044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;Thanks for replying!&lt;/P&gt;&lt;P&gt;I get an error message:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="" style="color: #de2900; background-color: rgba(255, 255, 255, 0.8);"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="" style="color: #de2900; background-color: rgba(255, 255, 255, 0.8);"&gt;Execution Error:&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: rgba(255, 255, 255, 0.8);"&gt;Must have a default value result.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background-color: rgba(255, 255, 255, 0.8);"&gt;When I run the following code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="background-color: rgba(255, 255, 255, 0.8); color: #4c4c4c; "&gt;var material = $feature["material"];&lt;BR /&gt;var materialLabel = When(&lt;BR /&gt;material == 0,"Unknown",&lt;BR /&gt;material == 13,"Aluminum",&lt;BR /&gt;material == 14,"Steel",&lt;BR /&gt;material == 15,"Cast Iron",&lt;BR /&gt;material == 16,"Plastic")&lt;BR /&gt;return materialLabel&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background-color: rgba(255, 255, 255, 0.8);"&gt;Is there anything in my code which is not right?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background-color: rgba(255, 255, 255, 0.8);"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background-color: rgba(255, 255, 255, 0.8);"&gt;Hassan&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jul 2019 13:59:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143074#M7044</guid>
      <dc:creator>HassanMuhammad</dc:creator>
      <dc:date>2019-07-30T13:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143075#M7045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;apologies,&amp;nbsp; I added the default value string before the return line.&amp;nbsp; Change to what you would like the value to be.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;var material = $feature["material"];
var materialLabel = When(
material == 0,"Unknown",
material == 13,"Aluminum",
material == 14,"Steel",
material == 15,"Cast Iron",
material == 16,"Plastic",
'defaultValue')
return materialLabel&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:52:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143075#M7045</guid>
      <dc:creator>ChrisWiebke</dc:creator>
      <dc:date>2021-12-11T07:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Custom pop-up (if/else statement) based on attribute values, ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143076#M7046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect!&lt;/P&gt;&lt;P&gt;That works!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help Chris &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jul 2019 14:14:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/custom-pop-up-if-else-statement-based-on-attribute/m-p/143076#M7046</guid>
      <dc:creator>HassanMuhammad</dc:creator>
      <dc:date>2019-07-30T14:14:59Z</dc:date>
    </item>
  </channel>
</rss>

