<?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: Can i eliminate empty values using arcade in my pop up? in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351359#M17626</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I actually figured it out based on an article of yours I found combined with another article!&amp;nbsp; &amp;nbsp;It was really easy to follow and now my popups look spectacular!&amp;nbsp; Thank you!&lt;BR /&gt;&lt;A href="https://community.esri.com/docs/DOC-14276"&gt;Conditional Field display with Arcade in Pop Ups (revisited)&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.esri.com/thread/232064"&gt;Hyperlink within expression of pop-up in AGOL&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the expression I ended up using:&lt;BR /&gt;IIF(isEmpty($feature["NRHP_Site"]),"none", "National Register of Historic Places");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the table HTML:&lt;/P&gt;&lt;P&gt;&amp;lt;tr style="display: {expression/expr8}"&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;&amp;lt;a href="{NRHP}"&amp;gt;National Register of Historic Places&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;/tr&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I went to copy it though - it had changed to this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;tr style="display: {expression/expr1}"&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;&amp;lt;a&amp;gt;National Register of Historic Places&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;/tr&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that's a bit wierd.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Jul 2020 23:15:34 GMT</pubDate>
    <dc:creator>SarahFox1</dc:creator>
    <dc:date>2020-07-27T23:15:34Z</dc:date>
    <item>
      <title>Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351344#M17611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am attempting to create a conditional arcade expression that will list all of the fields that do not have a null value with an individual label and not show the field at all if the field is null. My current expression is below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (IsEmpty($feature.ABARTA_WI)){&lt;BR /&gt; return ""&lt;BR /&gt;} else {&lt;BR /&gt; return "Abarata: "+$feature.ABARTA_WI&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This expression works in that it does not show the label or null value, but in the ArcGIS Portal pop up, it leaves an empty line for each one that is null, and i need it to not be there at all so the pop up is clean. As you can see below, this is creating empty lines in the popup.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="447071" class="image-1 jive-image" height="279" src="https://community.esri.com/legacyfs/online/447071_pastedImage_1.png" width="207" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would prefer the popup to display something like below, eliminating the empty lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chief: 0.28&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chief WI MKR: 0.28&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Enerplus: 0.3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;arcade expression‌ arcade pop-ups‌conditional pop ups‌&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2019 19:07:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351344#M17611</guid>
      <dc:creator>KevinMilton</dc:creator>
      <dc:date>2019-05-08T19:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351345#M17612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can, but it will require multiple expressions and some html to do this (if you want to show it using html). Or you can create a larger expression that constructs the text to display and omits empty values.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2019 20:05:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351345#M17612</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-05-08T20:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351346#M17613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well I need this popup to look professional so this is what i need to do. Can you provide further information on what that larger expression would look like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2019 20:09:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351346#M17613</guid>
      <dc:creator>KevinMilton</dc:creator>
      <dc:date>2019-05-08T20:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351347#M17614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look at this blog on how to customize your popup: &lt;A href="https://community.esri.com/community/gis/web-gis/arcgisonline/blog/2017/07/18/conditional-field-display-with-arcade-in-pop-ups"&gt;https://community.esri.com/community/gis/web-gis/arcgisonline/blog/2017/07/18/conditional-field-display-with-arcade-in-pop-ups&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2019 20:20:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351347#M17614</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2019-05-08T20:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351348#M17615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Apart from the post mentioned by Ken, there are some comments that&amp;nbsp;will be&amp;nbsp;relevant for you:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A _jive_internal="true" class="link-titled" href="https://community.esri.com/community/gis/web-gis/arcgisonline/blog/2017/07/18/conditional-field-display-with-arcade-in-pop-ups#comment-52552" title="https://community.esri.com/community/gis/web-gis/arcgisonline/blog/2017/07/18/conditional-field-display-with-arcade-in-pop-ups#comment-52552"&gt;https://community.esri.com/community/gis/web-gis/arcgisonline/blog/2017/07/18/conditional-field-display-with-arcade-in-p…&lt;/A&gt;&amp;nbsp; (using text colors based on the value of an attribute)&lt;/LI&gt;&lt;LI&gt;&lt;A _jive_internal="true" class="link-titled" href="https://community.esri.com/community/gis/web-gis/arcgisonline/blog/2017/07/18/conditional-field-display-with-arcade-in-pop-ups#comment-66670" title="https://community.esri.com/community/gis/web-gis/arcgisonline/blog/2017/07/18/conditional-field-display-with-arcade-in-pop-ups#comment-66670"&gt;https://community.esri.com/community/gis/web-gis/arcgisonline/blog/2017/07/18/conditional-field-display-with-arcade-in-p…&lt;/A&gt;&amp;nbsp;(hiding elements when they do not have information)&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2019 21:29:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351348#M17615</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-05-08T21:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351349#M17616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using something similar to what you have, you could use an approach like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="-webkit-text-stroke-width: 0px; font-variant-caps: normal; color: #4c4c4c; white-space: normal; letter-spacing: normal; display: inline !important; font-size: 14px; text-decoration-style: initial; font-style: normal; float: none; text-transform: none; word-spacing: 0px; text-indent: 0px; font-family: 'Avenir Next W01', 'Avenir Next W00', 'Avenir Next', Avenir, 'Helvetica Neue', sans-serif; text-decoration-color: initial; font-variant-ligatures: normal; text-align: start; "&gt;{expression/expr1}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;var a = $feature.notes&lt;BR /&gt;var b = $feature.popper&lt;BR /&gt;var attributes = ""&lt;BR /&gt;If (!IsEmpty($feature.notes)){&lt;BR /&gt; attributes = a + TextFormatting.NewLine + b&lt;BR /&gt;}&lt;BR /&gt;else {&lt;BR /&gt; attributes = b&lt;BR /&gt;}&lt;BR /&gt;return attributes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/447099_pastedImage_6.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Feature notes attribute is not Empty&amp;nbsp; Show both attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/447100_pastedImage_7.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else show one attribute&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-6 jive-image" src="https://community.esri.com/legacyfs/online/447101_pastedImage_8.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2019 22:39:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351349#M17616</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2019-05-08T22:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351350#M17617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;UPDATE!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a confirmed&amp;nbsp;bug, and the arcade script will not produce the results we are asking for. This bug is not repaired until the 10.7 license level.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 May 2019 14:52:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351350#M17617</guid>
      <dc:creator>KevinMilton</dc:creator>
      <dc:date>2019-05-24T14:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351351#M17618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share the number of the bug and the description?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 May 2019 15:14:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351351#M17618</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-05-24T15:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351352#M17619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;BUG-000122554&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;In Portal for ArcGIS Map viewer, an Arcade Expression to configure fields in a pop up does not honor the TextFormatting.NewLine&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jun 2019 14:26:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351352#M17619</guid>
      <dc:creator>KevinMilton</dc:creator>
      <dc:date>2019-06-27T14:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351353#M17620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;A _jive_internal="true" data-containerid="-1" data-containertype="-1" data-objectid="3100" data-objecttype="3" href="https://community.esri.com/people/xander_bakker" style="color: #287433; background-color: transparent; border: 0px; font-weight: inherit; padding: 1px 0px 1px calc(12px + 0.35ex);" target="_blank"&gt;Xander Bakker&lt;/A&gt;&lt;/P&gt;&lt;DIV style="background-color: #ffffff; border: 0px;"&gt;&lt;DIV style="border: 0px; font-weight: inherit;"&gt;&lt;A _jive_internal="true" data-userid="3100" data-username="xander_bakker" href="https://community.esri.com/people/xander_bakker" style="color: #3778c7; background-color: #ffffff; border: 0px; font-weight: 200; text-decoration: underline; font-size: 1.286rem;" target="_blank"&gt;Xander Bakker&lt;/A&gt;&lt;/DIV&gt;&lt;DIV style="border: 0px; font-weight: inherit;"&gt;&lt;A _jive_internal="true" data-userid="14822" data-username="kmunt23" href="https://community.esri.com/people/kmunt23" style="color: #3778c7; background-color: #ffffff; border: 0px; font-weight: 200; text-decoration: underline; font-size: 1.286rem;" target="_blank"&gt;Kevin Milton&lt;/A&gt;&lt;/DIV&gt;&lt;DIV style="border: 0px; font-weight: inherit;"&gt;&lt;A _jive_internal="true" data-userid="3856" data-username="kenbuja" href="https://community.esri.com/people/kenbuja" style="color: #3778c7; background-color: #ffffff; border: 0px; font-weight: 200; text-decoration: underline; font-size: 1.286rem;" target="_blank"&gt;Ken Buja&lt;/A&gt;&lt;SPAN style="color: #a9a9a9; background-color: #ffffff; font-weight: 500;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;IMG alt="Champion" class="" height="16" src="https://community.esri.com/resources/statics/rolebadges/roleBadge-4-1066-1422978816926.png" style="color: #a9a9a9; background-color: #ffffff; border: 0px; font-weight: 500; font-size: 12.5712px; margin: 0px 2px -3px -1px;" title="Champion" width="16" /&gt;&lt;/DIV&gt;&lt;DIV style="border: 0px; font-weight: inherit;"&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;I can write one-off conditional expressions but how do you combine multiple conditional expressions for different fields? In the example below Field 1 &amp;amp; 2 are from one layer and Field 3 is from the popup layer. I want to only return a value and if it is null do not return an empty space. I can write an expression for each field that is null and only return the other 2 or all 3 if all values are present but not how to combine all expressions.&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; padding: 0px 0px 0px 30px;"&gt;Field1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;Field1&amp;nbsp; or&amp;nbsp;&amp;nbsp;Field2&amp;nbsp; or&amp;nbsp;Field1&amp;nbsp; or&amp;nbsp;Field3 and so on&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; padding: 0px 0px 0px 30px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;Field2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Field2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Field3&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;Field3&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; padding: 0px 0px 0px 30px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;Field3&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;I know how to return all fields even if it's null but it leaves a space/s.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/476691_pastedImage_5.png" /&gt;&amp;nbsp;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/476711_pastedImage_7.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;This is my expression:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;var buildn = FeatureSetByName($map,"NLCOG Buildings",["BUILDING_N"])
var fsIntersectbuild = Intersects(buildn, $feature)
var fbuildn = first(fsIntersectbuild)

var buildu = FeatureSetByName($map,"NLCOG Buildings",["USAGE_"])
var fIntersectbuild = Intersects(buildu, $feature)
var fusage = first(fIntersectbuild)

var occp = $feature.OCCUPANCY

iif (fbuildn.BUILDING_N == null, fusage.USAGE_ + TextFormatting.NewLine + occp, fbuildn.BUILDING_N + TextFormatting.NewLine + fusage.USAGE_ + TextFormatting.NewLine + occp)
//iif (fusage.USAGE_ == null, fbuildn.BUILDING_N + TextFormatting.NewLine + occp, fbuildn.BUILDING_N + TextFormatting.NewLine + fusage.USAGE_ + TextFormatting.NewLine + occp)
//iif (occp == null || occp == 'SINGLEF', fusage.USAGE_ + TextFormatting.NewLine + fbuildn.BUILDING_N, fbuildn.BUILDING_N + TextFormatting.NewLine + fusage.USAGE_ + TextFormatting.NewLine + occp)&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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Each one of the iif statements works independently. I've tried using the When function but each field is different so it doesn't work or not the way that I wrote it.&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Any help would be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:30:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351353#M17620</guid>
      <dc:creator>GeraldSneary</dc:creator>
      <dc:date>2021-12-11T16:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351354#M17621</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/380877" target="_blank"&gt;Gerald Sneary&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just answered your question at the Kelly's blog, but looking at the example pop-up, this is something that could be solved in the expression and has no need for table and rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at the following example:&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; val1 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"A"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; val2 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Null&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; val3 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Test"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; lst &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;val1&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; val2&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; val3&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; result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; i &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; lst&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    If &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;!&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;IsEmpty&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lst&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;i&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&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;result &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; lst&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;i&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&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;
            result &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; TextFormatting&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;NewLine &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; lst&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;i&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
        &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
    &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;"### start ###"&lt;/SPAN&gt;&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;result&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;"### end ###"&lt;/SPAN&gt;&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; result&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;/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;&lt;/P&gt;&lt;P&gt;This will write the following text to the Console:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;### start ###
A
Test
### end ###&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will not create a line of the value is empty.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:30:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351354#M17621</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T16:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351355#M17622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander you are a lifesaver. Thank you so much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My hunch was right a list was needed. I just started learning code a month ago. I was about to break out LP3THW and start looking at lists. But I know I wouldn't have come up with your syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Too bad you don't live closer I'd take you out for a few beers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2019 16:39:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351355#M17622</guid>
      <dc:creator>GeraldSneary</dc:creator>
      <dc:date>2019-12-20T16:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351356#M17623</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/people/gerald.sneary80"&gt;gerald.sneary80&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm glad to have helped. I also just posted a small document on how to hide rows in a table in case you&amp;nbsp;need that:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/docs/DOC-14276"&gt;Conditional Field display with Arcade in Pop Ups (with Arcade)&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2019 16:44:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351356#M17623</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-12-20T16:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351357#M17624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can this be done with hyperlinks?&amp;nbsp; I have a list of landmarks that have different types of websites for their documentation to relate back to.&amp;nbsp; The table method worked beautifully, until I added a hyperlink to each one, then it spaced everything out again.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/501397_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2020 16:55:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351357#M17624</guid>
      <dc:creator>SarahFox1</dc:creator>
      <dc:date>2020-07-27T16:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351358#M17625</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/people/sjohnson_CityofLubbock"&gt;sjohnson_CityofLubbock&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to share the expression you have so far and he configuration of the pop-up?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2020 20:44:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351358#M17625</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-07-27T20:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351359#M17626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I actually figured it out based on an article of yours I found combined with another article!&amp;nbsp; &amp;nbsp;It was really easy to follow and now my popups look spectacular!&amp;nbsp; Thank you!&lt;BR /&gt;&lt;A href="https://community.esri.com/docs/DOC-14276"&gt;Conditional Field display with Arcade in Pop Ups (revisited)&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.esri.com/thread/232064"&gt;Hyperlink within expression of pop-up in AGOL&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the expression I ended up using:&lt;BR /&gt;IIF(isEmpty($feature["NRHP_Site"]),"none", "National Register of Historic Places");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the table HTML:&lt;/P&gt;&lt;P&gt;&amp;lt;tr style="display: {expression/expr8}"&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;&amp;lt;a href="{NRHP}"&amp;gt;National Register of Historic Places&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;/tr&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I went to copy it though - it had changed to this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;tr style="display: {expression/expr1}"&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;&amp;lt;a&amp;gt;National Register of Historic Places&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;/tr&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that's a bit wierd.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2020 23:15:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351359#M17626</guid>
      <dc:creator>SarahFox1</dc:creator>
      <dc:date>2020-07-27T23:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351360#M17627</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/people/sjohnson_CityofLubbock"&gt;sjohnson_CityofLubbock&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The most important thing is that you made it work. But indeed, it is strange that it would change after copying. Let me know if you run into any problems and we'll see if we can figure it out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2020 23:47:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/351360#M17627</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-07-27T23:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/1199657#M47250</link>
      <description>&lt;P&gt;I was looking all over for a solution that I could only display non null field values with the field alias and ended up combining a few different things I found.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var features = FeatureSetByName($map, 'CTP_Roadway_Observations', ['*'], false);
var aDict = Schema(features);
var aArray = aDict["fields"];
var output;
for (var i in $feature){
    if (!IsEmpty($feature[i])) {
        for(var j in aArray) {
            var dict = aArray[j];
            if (dict['name'] == i){
                output += dict['alias'] + ": " + $feature[i] + TextFormatting.NewLine + TextFormatting.NewLine;
            }
        }
    }
}
return output;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Produces this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rbasgall_0-1659649772393.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/47836iB36F989791129FA7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rbasgall_0-1659649772393.png" alt="rbasgall_0-1659649772393.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2022 21:50:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/1199657#M47250</guid>
      <dc:creator>rbasgall</dc:creator>
      <dc:date>2022-08-04T21:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/1203576#M47464</link>
      <description>&lt;P&gt;Thanks for this, its got me part way there&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;.&amp;nbsp; However I noticed that it changes the order of the fields, is there a way to display it as per the schema order?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 23:52:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/1203576#M47464</guid>
      <dc:creator>ChrisRoberts2</dc:creator>
      <dc:date>2022-08-16T23:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can i eliminate empty values using arcade in my pop up?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/1566974#M62789</link>
      <description>&lt;P&gt;a Thank you from 2024 &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2024 20:45:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/can-i-eliminate-empty-values-using-arcade-in-my/m-p/1566974#M62789</guid>
      <dc:creator>1stGreenFrequency</dc:creator>
      <dc:date>2024-12-10T20:45:11Z</dc:date>
    </item>
  </channel>
</rss>

