<?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: Omit Fields without data from the Pop up Window on Online MapViewer in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587150#M63703</link>
    <description>&lt;P&gt;I don't really see any difference in performance using this vs. the Field List but I only have 33 fields and 1100 features.&lt;/P&gt;&lt;P&gt;I'm pretty new to this kind of Arcade myself, but saw this post and had the need to incorporate it into some existing maps.&lt;/P&gt;&lt;P&gt;However, I do not see a way to have it non alphabetical.&amp;nbsp; The script seems to be returning the Fields in the right order, but they get automagically re-ordered in the popup.&lt;/P&gt;&lt;P&gt;Hopefully&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/595273"&gt;@gis_KIWI4&lt;/a&gt;&amp;nbsp;or someone with a better understanding of this can figure out a way.&lt;/P&gt;&lt;P&gt;If I get a chance in the future, may dive into this more.&lt;/P&gt;&lt;P&gt;R_&lt;/P&gt;</description>
    <pubDate>Wed, 19 Feb 2025 19:28:08 GMT</pubDate>
    <dc:creator>RhettZufelt</dc:creator>
    <dc:date>2025-02-19T19:28:08Z</dc:date>
    <item>
      <title>Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1585916#M63649</link>
      <description>&lt;P&gt;I am making an online experience and need help with Pop-ups&lt;/P&gt;&lt;P&gt;I have a point layer that contains my company's environmental DNA sample results. There are over 1000 data points, containing information on over 20 species. The point attributes include 46 fields.&lt;/P&gt;&lt;P&gt;When a point is selected in the map, I would like the viewer to only see those fields in the pop-up window that have data for that particular point, instead of having to scroll through 46 fields to find the pertinent DNA results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example,&lt;/P&gt;&lt;P&gt;For this point, I would like the following pop-up window to omit all the empty rows (red slashes).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WFCAdmin_0-1739752969726.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/125517iC95CB38B51C75821/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WFCAdmin_0-1739752969726.png" alt="WFCAdmin_0-1739752969726.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Can someone help me with this appropriate arcade expression?&lt;/P&gt;&lt;P&gt;I prefer the default pop-up look. No fancy headings or color are needed.&lt;/P&gt;&lt;P&gt;If you could provide an example that would be great!&lt;/P&gt;&lt;P&gt;Here are a couple of the fields in my data set.&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Chinook_Salmon_DNA_Detected_&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;NumPos_ChinookWells&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Coho_Salmon_DNA_Detected_&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN class=""&gt;NumPos_CohoWells&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Bull_Trout_DNA_Detected_&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN class=""&gt;NumPos_BullTWells&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you!!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2025 00:49:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1585916#M63649</guid>
      <dc:creator>WFCAdmin</dc:creator>
      <dc:date>2025-02-17T00:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1586225#M63660</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/90704"&gt;@WFCAdmin&lt;/a&gt;&amp;nbsp;-&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try this -&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var attributes = Dictionary($feature)["attributes"];
var fieldInfos = [];
var attributeValues = {};


var excludeFields = ["OBJECTID", "EditDate"];


for (var key in attributes) {
    var value = attributes[key];
    

    if (!IsEmpty(value) &amp;amp;&amp;amp; value != "" &amp;amp;&amp;amp; IndexOf(excludeFields, key) == -1) {
        Push(fieldInfos, { fieldName: key });
        attributeValues[key] = value;
    }
}


return {
    type: 'fields',
    fieldInfos: fieldInfos,
    attributes: attributeValues
};&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This also allows a provision to remove certain fields like "ObjectID" and other tracking fields.&lt;BR /&gt;An example below -&amp;nbsp;&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="gis_KIWI4_0-1739851381642.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/125610iEA7B98E1D8C59456/image-size/large?v=v2&amp;amp;px=999" role="button" title="gis_KIWI4_0-1739851381642.png" alt="gis_KIWI4_0-1739851381642.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2025 04:05:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1586225#M63660</guid>
      <dc:creator>gis_KIWI4</dc:creator>
      <dc:date>2025-02-18T04:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1586481#M63671</link>
      <description>&lt;P&gt;Thank you so much!!!&lt;/P&gt;&lt;P&gt;Sorry, I am a total novice with Arcade.&lt;/P&gt;&lt;P&gt;For the fields line, I bracket each field with &lt;STRONG&gt;' '&lt;/STRONG&gt; and separate each field with a &lt;STRONG&gt;comma&lt;/STRONG&gt;? Do I close out the fields row with anything special?&lt;/P&gt;&lt;P&gt;Here is an example&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'BULL_DNA_Detected'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'Num_BULL_Wells'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'DOVN_DNA_Detected'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'Num_DOVN_Wells'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;fieldInfos&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;fieldInfos&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;attributes&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;attributeValues&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;};&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 18 Feb 2025 17:19:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1586481#M63671</guid>
      <dc:creator>WFCAdmin</dc:creator>
      <dc:date>2025-02-18T17:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1586590#M63675</link>
      <description>&lt;P&gt;The arcade code is fully dynamic. No need to mention what fields to output. The only time you might want to specify the fields is in&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;var excludeFields = ["OBJECTID", "EditDate"];&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These fields will be removed regardless if they are null or not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2025 19:39:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1586590#M63675</guid>
      <dc:creator>gis_KIWI4</dc:creator>
      <dc:date>2025-02-18T19:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587045#M63690</link>
      <description>&lt;P&gt;Awesome!&lt;/P&gt;&lt;P&gt;I am getting very close! Thank you gis_KIWI4!!&lt;/P&gt;&lt;P&gt;I am struggling with where to imbed the expression.&lt;/P&gt;&lt;P&gt;I notice that it will replicate the fields list filtered perfectly, omiting all the empty fields, but only if I add the expression after the fields list.&lt;/P&gt;&lt;P&gt;If I remove the fields list and only only include the expression then nothing will pop up.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 17:01:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587045#M63690</guid>
      <dc:creator>WFCAdmin</dc:creator>
      <dc:date>2025-02-19T17:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587052#M63692</link>
      <description>&lt;P&gt;To get this to work, I had to remove the field list, then add a new Arcade content and embed the code there.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RhettZufelt_0-1739984945581.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/125799iB07176BA663E0962/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RhettZufelt_0-1739984945581.png" alt="RhettZufelt_0-1739984945581.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then it will draw the popup table correctly.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RhettZufelt_1-1739984979263.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/125800i7664E45D24120446/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RhettZufelt_1-1739984979263.png" alt="RhettZufelt_1-1739984979263.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;R_&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 17:10:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587052#M63692</guid>
      <dc:creator>RhettZufelt</dc:creator>
      <dc:date>2025-02-19T17:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587065#M63693</link>
      <description>&lt;P&gt;It does work!&lt;/P&gt;&lt;P&gt;It just takes about 1-2 minutes to load the popup.&lt;/P&gt;&lt;P&gt;It looks like it defaults to ordering the fields alphabetically. Is there any way to correct this?&lt;/P&gt;&lt;P&gt;Thank you again!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 17:24:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587065#M63693</guid>
      <dc:creator>WFCAdmin</dc:creator>
      <dc:date>2025-02-19T17:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587116#M63699</link>
      <description>&lt;P&gt;Also, if it were possible to have the resulting popups use the display name instead of the field name, that would be amazing!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 18:21:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587116#M63699</guid>
      <dc:creator>WFCAdmin</dc:creator>
      <dc:date>2025-02-19T18:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587150#M63703</link>
      <description>&lt;P&gt;I don't really see any difference in performance using this vs. the Field List but I only have 33 fields and 1100 features.&lt;/P&gt;&lt;P&gt;I'm pretty new to this kind of Arcade myself, but saw this post and had the need to incorporate it into some existing maps.&lt;/P&gt;&lt;P&gt;However, I do not see a way to have it non alphabetical.&amp;nbsp; The script seems to be returning the Fields in the right order, but they get automagically re-ordered in the popup.&lt;/P&gt;&lt;P&gt;Hopefully&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/595273"&gt;@gis_KIWI4&lt;/a&gt;&amp;nbsp;or someone with a better understanding of this can figure out a way.&lt;/P&gt;&lt;P&gt;If I get a chance in the future, may dive into this more.&lt;/P&gt;&lt;P&gt;R_&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 19:28:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587150#M63703</guid>
      <dc:creator>RhettZufelt</dc:creator>
      <dc:date>2025-02-19T19:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587306#M63713</link>
      <description>&lt;P&gt;Here is the code to use display names -&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var attributes = Dictionary($feature)["attributes"];
var fieldInfos = [];
var attributeValues = {};


var excludeFields = ["OBJECTID", "EditDate"]; //Use this to exclude any fields, null or not null


var layer_schema = Schema($feature);
var fieldAliases = {};


for (var i = 0; i &amp;lt; Count(layer_schema.fields); i++) {
    var field = layer_schema.fields[i];
    fieldAliases[field.name] = field.alias;
}


for (var key in attributes) {
    var value = attributes[key];


    if (!IsEmpty(value) &amp;amp;&amp;amp; value != "" &amp;amp;&amp;amp; IndexOf(excludeFields, key) == -1) {
        var displayName = key; // Default to field name
        
        // Use alias if available
        if (HasKey(fieldAliases, key)) {
            displayName = fieldAliases[key];
        }
        
        Push(fieldInfos, { fieldName: key, label: displayName });
        attributeValues[key] = value;
    }
}



return {
    type: 'fields',
    fieldInfos: fieldInfos,
    attributes: attributeValues
};&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here you can see the Highlighted fields have had the Display Name (ignore the other fields).&amp;nbsp;&lt;BR /&gt;The test layers has Display name and Field Name the same.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gis_KIWI4_0-1740005814774.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/125848i18B987890E2C8737/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gis_KIWI4_0-1740005814774.png" alt="gis_KIWI4_0-1740005814774.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 22:59:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587306#M63713</guid>
      <dc:creator>gis_KIWI4</dc:creator>
      <dc:date>2025-02-19T22:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587345#M63715</link>
      <description>&lt;P&gt;Thank you gis_KIWI4!&lt;/P&gt;&lt;P&gt;So here is the issue that I am having.&lt;/P&gt;&lt;P&gt;If I simply have my title and the arcade expression I get only the title in the pop-up.&lt;/P&gt;&lt;P&gt;If I have the title, the field list with all 46 fields checked on, and the arcade expression, I get the full list followed by the abbreviated list. The abbreviated list works perfectly this way always filtering out the empty fields, but it defeats the purpose because the pop-up is still clogged with a bunch of blank data to scroll through.&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If on the other hand I add a fields list below the arcade expression I get&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 01:48:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587345#M63715</guid>
      <dc:creator>WFCAdmin</dc:creator>
      <dc:date>2025-02-20T01:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587346#M63716</link>
      <description>&lt;P&gt;Thank you RhettZufelt!&lt;/P&gt;&lt;P&gt;So here is the issue that I am having.&lt;/P&gt;&lt;P&gt;If I simply have my title and the arcade expression I get only the title in the pop-up.&lt;/P&gt;&lt;P&gt;If I have the title, the field list with all 46 fields checked on, and the arcade expression, I get the full list followed by the abbreviated list. The abbreviated list works perfectly this way always filtering out the empty fields, but it defeats the purpose because the pop-up is still clogged with a bunch of blank data to scroll through.&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 01:49:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587346#M63716</guid>
      <dc:creator>WFCAdmin</dc:creator>
      <dc:date>2025-02-20T01:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587410#M63719</link>
      <description>&lt;P&gt;I am not sure why that is happening.&lt;/P&gt;&lt;P&gt;I only have the title and arcade expression and it works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have any attribute expressions that might be causing this iss&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 10:32:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587410#M63719</guid>
      <dc:creator>gis_KIWI4</dc:creator>
      <dc:date>2025-02-20T10:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587505#M63722</link>
      <description>&lt;P&gt;No.&lt;/P&gt;&lt;P&gt;Just to be 100% sure, is this what yours looks like?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WFCAdmin_0-1740065548564.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/125884iA381CFA874C799A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WFCAdmin_0-1740065548564.png" alt="WFCAdmin_0-1740065548564.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 15:32:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587505#M63722</guid>
      <dc:creator>WFCAdmin</dc:creator>
      <dc:date>2025-02-20T15:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587544#M63723</link>
      <description>&lt;P&gt;Is there anything under the Attribute Expressions section:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RhettZufelt_0-1740071300886.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/125889i8F3471A826E294EF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RhettZufelt_0-1740071300886.png" alt="RhettZufelt_0-1740071300886.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;R_&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 17:08:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587544#M63723</guid>
      <dc:creator>RhettZufelt</dc:creator>
      <dc:date>2025-02-20T17:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587623#M63726</link>
      <description>&lt;P&gt;Yeah, it's empty, no expressions saved there.&lt;/P&gt;&lt;P&gt;Its bizzar. The first time I load up the web map the popups work perfectly. Then, if I click on a second point - nothing, just the title pops up.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 19:28:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587623#M63726</guid>
      <dc:creator>WFCAdmin</dc:creator>
      <dc:date>2025-02-20T19:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587627#M63727</link>
      <description>&lt;P&gt;Even more weird. If I click on another layer in the layers pane, then click back on the layer with the pop-ups, the pop-up functions properly. If i stay selected on the pop-up layer and select another point, the popups stop functioning. But if I then select another layer in the layers pain, then select my pop up layer again it works again. Its like the popup window only functions the first time, then needs to be reset!&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 19:44:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1587627#M63727</guid>
      <dc:creator>WFCAdmin</dc:creator>
      <dc:date>2025-02-20T19:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1610587#M64587</link>
      <description>&lt;P&gt;Hi gis_KIWI4,&lt;/P&gt;&lt;P&gt;I am following the advice you provided in this post to modifiy my pop up attribute tables. I&amp;nbsp;&lt;SPAN&gt;copy and paste the script you shared and modified&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;for excluded values.&amp;nbsp; Unfortunately, when embedding the script in the map even the attributes that have values are omitted from the pop up table.&amp;nbsp; Do you have any insights into this?&amp;nbsp; Much appreciated!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;A. Yeaton&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 20:09:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1610587#M64587</guid>
      <dc:creator>Yeaton</dc:creator>
      <dc:date>2025-04-30T20:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Omit Fields without data from the Pop up Window on Online MapViewer</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1695846#M68395</link>
      <description>&lt;P&gt;I have had success with using Arcade to accomplish this, however I really wish Esri would release a native solution to hide null fields. Seems like a toggle option would be possible. This would keep all layer settings like field order, aliases, even display format without having to tweak through Arcade.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2026 16:06:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/omit-fields-without-data-from-the-pop-up-window-on/m-p/1695846#M68395</guid>
      <dc:creator>andeb31</dc:creator>
      <dc:date>2026-04-13T16:06:13Z</dc:date>
    </item>
  </channel>
</rss>

