<?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 Expr skips empty in MV Classic but not in New MV in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147761#M44595</link>
    <description>&lt;P&gt;Very nice! I'm primarily in Portal, so I must've missed when this got added. Thanks for pointing it out!&lt;/P&gt;</description>
    <pubDate>Thu, 24 Feb 2022 22:15:30 GMT</pubDate>
    <dc:creator>jcarlson</dc:creator>
    <dc:date>2022-02-24T22:15:30Z</dc:date>
    <item>
      <title>Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147182#M44547</link>
      <description>&lt;P&gt;Greetings all.&lt;/P&gt;&lt;P&gt;I created a custom pop-up in MV Classic that includes values from 7 text attribute fields, plus up to 3 photos. 3 of the 7 fields are links to web pages, and I successfully configured the popup in Arcade to exclude rows with missing values for those 3 fields. (Sidebar: because the attributes with some missing values are &lt;EM&gt;links to web pages&lt;/EM&gt;, I have not been able to figure out--despite exhaustive effort--how to collapse the resulting empty rows.) The popup worked well in MV classic and showed all of the text fields, with the photos at the bottom.&lt;/P&gt;&lt;P&gt;Here's the problem: I was requested to switch the order of the display such that it shows some text fields, then the media photos, and then the remaining text fields beneath that (for use in the feature information card in Web Experience Builder). When I re-order the popup info in new map viewer, the Arcade expression I used before loses functionality--all rows are displayed, even though they contain empty data, resulting in text that should be a link but doesn't have anything to link to, rather than a blank, empty line. The HTML that I try to copy over from old to new popup configuration fails. Below is a screen capture of the new popup and configuration in New MV, and following are my original Arcade expressions and the HTML in MV Classic that doesn't seem to translate in new MV.&lt;/P&gt;&lt;P&gt;What am I doing wrong?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RaenaDeMaris_0-1645645437873.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34799i2A9C32739B2C33A5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RaenaDeMaris_0-1645645437873.png" alt="RaenaDeMaris_0-1645645437873.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Arcade expressions that worked in MV Classic (but returned a blank line if empty once formatted as links)&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;return IIF(IsEmpty($feature.Embeds), 'none', 'inline')&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;return IIF(IsEmpty($feature.Link1), 'none', 'inline')&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;The bottom attribute link is never empty, but the other two might be.&lt;/P&gt;&lt;P&gt;Thanks for any insights you can provide.&lt;/P&gt;&lt;P&gt;raena&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 19:48:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147182#M44547</guid>
      <dc:creator>RaenaDeMaris</dc:creator>
      <dc:date>2022-02-23T19:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147197#M44548</link>
      <description>&lt;P&gt;I believe this is because as of right now, the new map viewer cannot be configured via HTML source the way the Classic map viewer could. Your HTML tags that hide elements based on a "display" attribute aren't going to function as intended.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 20:04:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147197#M44548</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-02-23T20:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147201#M44549</link>
      <description>&lt;P&gt;Hi Josh, thank you for responding. So, what you're saying is that with the current functionality, there's no way to skip the empty attributes here?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 20:12:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147201#M44549</guid>
      <dc:creator>RaenaDeMaris</dc:creator>
      <dc:date>2022-02-23T20:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147207#M44550</link>
      <description>&lt;P&gt;That is my understanding of the situation, yes. There may be other ways to display your links, but they won't be as nicely formatted. But better HTML support is on the road map, I believe.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 20:18:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147207#M44550</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-02-23T20:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147238#M44554</link>
      <description>&lt;P&gt;Thank you. I hesitate to accept this as a solution... but thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 20:58:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147238#M44554</guid>
      <dc:creator>RaenaDeMaris</dc:creator>
      <dc:date>2022-02-23T20:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147243#M44555</link>
      <description>&lt;P&gt;Oh, I understand. "You can't do it" doesn't actually &lt;EM&gt;solve&lt;/EM&gt; anything, even if it's the answer at the moment. But it is something that should be solved, and hopefully soon.&lt;/P&gt;&lt;P&gt;The related idea (&lt;A href="https://community.esri.com/t5/arcgis-online-ideas/html-support-in-new-map-viewer-for-pop-ups/idi-p/1078659" target="_blank"&gt;https://community.esri.com/t5/arcgis-online-ideas/html-support-in-new-map-viewer-for-pop-ups/idi-p/1078659&lt;/A&gt;) does have an Esri staff person stating it should be in the next versions of things. Must have missed the December AGOL update, but it sounds like it can't be far off.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 21:13:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147243#M44555</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-02-23T21:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147244#M44556</link>
      <description>&lt;P&gt;That's hopeful news. Thanks again!&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 21:14:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147244#M44556</guid>
      <dc:creator>RaenaDeMaris</dc:creator>
      <dc:date>2022-02-23T21:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147306#M44559</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/558444"&gt;@RaenaDeMaris&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;If I can chime in... there is a way to create HTML in the pop-up of the new map viewer. The way to do this is not to create an expression that appears as a "virtual field" (red rectangle below), but to add an Arcade content element (green rectangles below):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="XanderBakker_0-1645656188520.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34834iEDD3E5B6F6815439/image-size/medium?v=v2&amp;amp;px=400" role="button" title="XanderBakker_0-1645656188520.png" alt="XanderBakker_0-1645656188520.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This way you can generate HTML and it will appear in the pop-up, like this example below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="XanderBakker_1-1645656261405.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34835i8BBCC6C22F33F592/image-size/medium?v=v2&amp;amp;px=400" role="button" title="XanderBakker_1-1645656261405.png" alt="XanderBakker_1-1645656261405.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You can use different styles, create lists, include multiple links stored in related data, etc...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 22:45:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147306#M44559</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2022-02-23T22:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147323#M44561</link>
      <description>&lt;P&gt;Thanks Xander! This must be a fairly new functionality? It doesn't seem to work if I just copy over the old Arcade expressions. What am I missing?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 23:15:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147323#M44561</guid>
      <dc:creator>RaenaDeMaris</dc:creator>
      <dc:date>2022-02-23T23:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147325#M44562</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/558444"&gt;@RaenaDeMaris&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;When you add an Arcade content element, the idea is that you can create HTML. Now I haven't checked the support for every available HTML, however, if you can share the entire Arcade expression you are using I can have a look.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;In order to avoid that you have to create a table and hide elements from that table manually in the HTML output, you could have a look at the Field Maps application. This may sound strange, but the idea is that this application allows you to hide fields conditionally and that is stored in the json definition of the map and the new map viewer is able to handle this. However, if you are planning the use the web map in for instance a dashboard or an instant app, not all other applications have support for this information in the json.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 23:27:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147325#M44562</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2022-02-23T23:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147332#M44563</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1108"&gt;@XanderBakker&lt;/a&gt; I greatly appreciate this help!! The HTML in that worked in MV Classic is below, with the part relevant to the three hyperlinks that I'm trying to troubleshoot in the blue text.&lt;/P&gt;&lt;P&gt;&amp;lt;div style="background-color:#{expression/expr8};padding:5px;"&amp;gt;&lt;BR /&gt;&amp;lt;span style="color:#{expression/expr9};"&amp;gt;&lt;BR /&gt;&amp;lt;strong&amp;gt;{CatDescrip}:&amp;nbsp;{Organization}&amp;lt;/strong&amp;gt;&lt;BR /&gt;&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;span style="display:{expression/expr1}"&amp;gt;&lt;BR /&gt;&amp;lt;br /&amp;gt;{VictoryTitle}&amp;lt;br /&amp;gt;&lt;BR /&gt;&amp;lt;/span&amp;gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;&amp;lt;font color="#46C8F3"&amp;gt;&amp;lt;br /&amp;gt;{Pop} benefitted from the victory!&amp;lt;/font&amp;gt;&amp;lt;/b&amp;gt;&lt;BR /&gt;&amp;lt;br /&amp;gt;&amp;lt;/i&amp;gt;&lt;BR /&gt;&amp;lt;span style="display:{expression/expr2}"&amp;gt;&amp;lt;br /&amp;gt;{VictDescrip}&amp;lt;br /&amp;gt;&amp;nbsp;&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;lt;br /&amp;gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;span style="display:{expression/expr6}"&amp;gt;&amp;lt;a href="{Embeds}" target="_blank"&amp;gt;Visit the Victory's Media Page&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;br /&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;span style="display:{expression/expr7}"&amp;gt;&amp;lt;a href="{Link1}" target="_blank"&amp;gt;Learn More About the Victory&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;br /&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;a href="{Link2}" target="_blank"&amp;gt;Go to Waterkeeper Website&amp;lt;/a&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;The relevant arcade expressions are:&lt;/P&gt;&lt;P&gt;(expression/expr6) = return IIF(IsEmpty($feature.Embeds), 'none', 'inline')&lt;/P&gt;&lt;P&gt;(expression/expr7)= return IIF(IsEmpty($feature.Link1), 'none', 'inline')&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 23:34:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147332#M44563</guid>
      <dc:creator>RaenaDeMaris</dc:creator>
      <dc:date>2022-02-23T23:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147354#M44565</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/558444"&gt;@RaenaDeMaris&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;You would probably end up doing something like:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var expr1 = 'Include the result of expr1 here' // {expression/expr1}
var expr2 = 'Include the result of expr2 here' // {expression/expr2}
var expr8 = 'Include the result of expr8 here' // {expression/expr8}
var expr9 = 'Include the result of expr9 here' // {expression/expr9}

var html = '&amp;lt;div style="background-color:#' + expr8 + ';padding:5px;"&amp;gt;';
html += TextFormatting.NewLine + '&amp;lt;span style="color:#' + expr9 + ';"&amp;gt;';
html += TextFormatting.NewLine + '&amp;lt;strong&amp;gt;' + $feature.CatDescrip + ': ' + $feature.Organization + '&amp;lt;/strong&amp;gt;';
html += TextFormatting.NewLine + '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;';
html += TextFormatting.NewLine + '&amp;lt;span style="' + expr1 + '"&amp;gt;';
html += TextFormatting.NewLine + '&amp;lt;br /&amp;gt;' + $feature.VictoryTitle + '&amp;lt;br /&amp;gt;';
html += TextFormatting.NewLine + '&amp;lt;/span&amp;gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;&amp;lt;font color="#46C8F3"&amp;gt;&amp;lt;br /&amp;gt;' + $feature.Pop + ' benefitted from the victory!&amp;lt;/font&amp;gt;&amp;lt;/b&amp;gt;';
html += TextFormatting.NewLine + '&amp;lt;br /&amp;gt;&amp;lt;/i&amp;gt;';
html += TextFormatting.NewLine + '&amp;lt;span style="display:' + expr2 + '"&amp;gt;&amp;lt;br /&amp;gt;' + $feature.VictDescrip + '&amp;lt;br /&amp;gt; &amp;lt;/span&amp;gt;';
html += TextFormatting.NewLine + '&amp;lt;br /&amp;gt;';

if (!IsEmpty($feature.Embeds)) {
    html += TextFormatting.NewLine + '&amp;lt;span&amp;gt;&amp;lt;a href="' + $feature.Embeds + '" target="_blank"&amp;gt;Visit the Victory' + "'s Media Page&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;";
    html += TextFormatting.NewLine + '&amp;lt;br /&amp;gt;';
} 

if (!IsEmpty($feature.Link1)) {
    html += TextFormatting.NewLine + '&amp;lt;span&amp;gt;&amp;lt;a href="' + $feature.Link1 + '" target="_blank"&amp;gt;Learn More About the Victory&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;';
    html += TextFormatting.NewLine + '&amp;lt;br /&amp;gt;';
}

html += TextFormatting.NewLine + '&amp;lt;a href="' + $feature.Link2 + '" target="_blank"&amp;gt;Go to Waterkeeper Website&amp;lt;/a&amp;gt;';

return {'type': "text", 'text': html};&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 24 Feb 2022 00:39:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147354#M44565</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2022-02-24T00:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147683#M44593</link>
      <description>&lt;P&gt;Raena,&lt;/P&gt;&lt;P&gt;Not sure if this pertains, but I have seen some people having issues that "used" to work, but don't now and resolved the issue by using&amp;nbsp;&lt;SPAN&gt;$feature["fieldname"] instead of&amp;nbsp;$feature.fieldname, though, I don't see any spaces in your field names, so "probably" won't make a difference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also, unless you are using grouped layers or something that will break in Classic Viewer, one option is to turn off popups in Beta viewer, and open in Classic and add the popup config that worked.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;R_&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 19:24:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147683#M44593</guid>
      <dc:creator>RhettZufelt</dc:creator>
      <dc:date>2022-02-24T19:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147760#M44594</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1108"&gt;@XanderBakker&lt;/a&gt; this is amazing! Thank you so much for taking the time to show me this. I've learned so much!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 22:13:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147760#M44594</guid>
      <dc:creator>RaenaDeMaris</dc:creator>
      <dc:date>2022-02-24T22:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147761#M44595</link>
      <description>&lt;P&gt;Very nice! I'm primarily in Portal, so I must've missed when this got added. Thanks for pointing it out!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 22:15:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147761#M44595</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-02-24T22:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147765#M44596</link>
      <description>&lt;P&gt;Hi Rhett, Yes, at first I tried the latter. But I think I'm forced into using New MV popup because it provides a little more flexibility in the ordering of the popup. It's now: attribute related--media related--then attribute related again. In Classic, the attribute followed by media, or media followed by attribute works fine. I'm also using some snazzy dropshadow and bloom symbology in New MV, and it's something I should learn anyway. Thanks for the workaround ideas, though!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 22:17:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147765#M44596</guid>
      <dc:creator>RaenaDeMaris</dc:creator>
      <dc:date>2022-02-24T22:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147770#M44597</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;When it comes to changes in the web map I think Enterprise is a bit behind ArcGIS Online. It should come to Enterprise soon and can't wait to see some cool stuff with that. Keep up the good work!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 22:28:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147770#M44597</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2022-02-24T22:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expr skips empty in MV Classic but not in New MV</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147771#M44598</link>
      <description>&lt;P&gt;Yeah, it usually is. That's part of why I like engaging with questions on here, so that by the time these things land in my Portal toolbox, I've already got a bunch of ideas how to use them.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 22:30:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-expr-skips-empty-in-mv-classic-but-not-in/m-p/1147771#M44598</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-02-24T22:30:23Z</dc:date>
    </item>
  </channel>
</rss>

