<?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: Empty results from data expression in Dashboard in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171085#M6219</link>
    <description>&lt;P&gt;I guess it would have been more accurate to say "same length", since the columns would change and not actually be the same "shape".&lt;/P&gt;&lt;P&gt;In widgets that keep a feature-by-feature output like a List or a Table, Advanced Formatting would be more than enough for what you're doing.&lt;/P&gt;&lt;P&gt;The&amp;nbsp;&lt;EM&gt;Indicator&amp;nbsp;&lt;/EM&gt;widget, though, is going to &lt;STRONG&gt;aggregate&lt;/STRONG&gt; your data, unless of course you have it set to show an indcator per-feature. For instance, here's an Indicator of a "world cities" layer. I have the value set to a sum of "MALES", and the reference set to a sum of "POPULATION".&lt;/P&gt;&lt;P&gt;With my value and reference set, I can have the indicator set to "{percentage}". No advanced formatting or data expressions needed.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_0-1651760889769.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/40673i69EDB597641D4696/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_0-1651760889769.png" alt="jcarlson_0-1651760889769.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But this is a straightforward example. I'm not sure what your data looks like, but what statistic will you be trying to show? If I wanted something like the "average percentage" of the cities, this wouldn't cut it. In a normal distribution it'll be sort of close, but&amp;nbsp; any outliers are going to skew things quite a bit.&lt;/P&gt;</description>
    <pubDate>Thu, 05 May 2022 14:43:57 GMT</pubDate>
    <dc:creator>jcarlson</dc:creator>
    <dc:date>2022-05-05T14:43:57Z</dc:date>
    <item>
      <title>Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1170889#M6204</link>
      <description>&lt;P&gt;Hello!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I am new to data expressions in dashboard. I want to combine two columns from one layer, by dividing them with each other, but my code gives me no results. I also get no error message, it is just empty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone has an idea what is wrong with my code I am grateful to hear. Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/Elinor&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;var fs = FeatureSetByPortalItem(Portal('&lt;A href="https://www.arcgis.com" target="_blank" rel="noopener"&gt;https://www.arcgis.com&lt;/A&gt;'),&lt;BR /&gt;'1db5c1db1d2d44a985b2a2144f6c663f', 0,&lt;BR /&gt;["M3SK_HA", "M3SK_HA_Lov"], false)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;var percentLov = {&lt;BR /&gt;'fields': [{'name':'Lovpercent', 'type':'esriFieldTypeDouble'},&lt;BR /&gt;],&lt;BR /&gt;'geometryType': '',&lt;BR /&gt;'features':&lt;BR /&gt;[{'attributes':&lt;BR /&gt;{'Lovpercent': 'M3SK_HA_Lov'/'M3SK_HA'&lt;BR /&gt;}}]};&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;return FeatureSet(Text(percentLov));&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 23:03:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1170889#M6204</guid>
      <dc:creator>ElinorBrehmer_Österhult</dc:creator>
      <dc:date>2022-05-04T23:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1170899#M6205</link>
      <description>&lt;P&gt;The part of your expression "'M3SK_HA_Lov'/'M3SK_HA'" is the issue. Your expression is just taking those as literal strings, and it has no way of knowing that those correspond to fields in your FeatureSet. You'd need to tell your expression how it is to be accessing the attributes.&lt;/P&gt;&lt;P&gt;In order to correct this, can you clarify what the intended output is? Do you mean to "combine two columns" into a single statistic? The way it's written, your expression will have a&amp;nbsp;&lt;STRONG&gt;single feature&lt;/STRONG&gt; in it. And if that's the case, what you're trying to accomplish can be done more directly in other widgets.&lt;/P&gt;&lt;P&gt;If, however, you want to create a new field that has the dividend&amp;nbsp;&lt;EM&gt;per feature&lt;/EM&gt;, you'll need to use a loop to populate the features array. However! If your output FeatureSet is going to be the&amp;nbsp;&lt;EM&gt;same shape as the input&lt;/EM&gt;, you can actually do this in a much easier way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs = FeatureSetByPortalItem(
    Portal('https://www.arcgis.com'),
    '1db5c1db1d2d44a985b2a2144f6c663f', 0,
    ["M3SK_HA", "M3SK_HA_Lov"],
    false
)

return GroupBy(
    fs,
    'OBJECTID', // or whatever unique ID field your layer has
    {
        name: 'Lovpercent',
        expression: 'M3SK_HA_Lov / M3SK_HA',
        statistic: 'SUM'
    }
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The&amp;nbsp;&lt;STRONG&gt;GroupBy&lt;/STRONG&gt; function gives us the ability to create a new field using a SQL expression. By "grouping" the layer by its unique identifier, you'll get every row back out, and by "summing" the single values for each ID, you get the values themselves.&lt;/P&gt;&lt;P&gt;This would output the number, not text, but most Dashboard widgets can handle value formatting to make things look nice.&lt;/P&gt;&lt;P&gt;Speaking of which: what widget are you intending to use this with? If it's a widget that has access to&amp;nbsp;Arcade-based&amp;nbsp;&lt;STRONG&gt;formatting&lt;/STRONG&gt;, you could calculate the dividend directly off of the source layer, no need for Data Expressions&amp;nbsp;&lt;EM&gt;at all&lt;/EM&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 23:38:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1170899#M6205</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-05-04T23:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1170908#M6207</link>
      <description>&lt;P&gt;Thank you very much for your super quick and information-rich answer. I will think about your questions, and I will be more specific telling what my intended output is, and I will answer tomorrow:)&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 23:54:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1170908#M6207</guid>
      <dc:creator>ElinorBrehmer_Österhult</dc:creator>
      <dc:date>2022-05-04T23:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171064#M6217</link>
      <description>&lt;P&gt;Hello jcarlson! The intended output is to create a new field with that has the dividend per feature.&lt;/P&gt;&lt;P&gt;I don't own the data and so I cannot add a field directly in the table in the map viewer.&lt;/P&gt;&lt;P&gt;I intend to use the widget "Indicator".&amp;nbsp;Maybe then I can calculate the dividend directly of the source layer, under Advanced formatting?&lt;/P&gt;&lt;P&gt;I am unsure about the question "If the output FeatureSet is going to be the&amp;nbsp;&lt;EM&gt;same shape as the input", &lt;/EM&gt;if by shape you mean same style of the data, the answer is yes &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 14:08:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171064#M6217</guid>
      <dc:creator>ElinorBrehmer_Österhult</dc:creator>
      <dc:date>2022-05-05T14:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171085#M6219</link>
      <description>&lt;P&gt;I guess it would have been more accurate to say "same length", since the columns would change and not actually be the same "shape".&lt;/P&gt;&lt;P&gt;In widgets that keep a feature-by-feature output like a List or a Table, Advanced Formatting would be more than enough for what you're doing.&lt;/P&gt;&lt;P&gt;The&amp;nbsp;&lt;EM&gt;Indicator&amp;nbsp;&lt;/EM&gt;widget, though, is going to &lt;STRONG&gt;aggregate&lt;/STRONG&gt; your data, unless of course you have it set to show an indcator per-feature. For instance, here's an Indicator of a "world cities" layer. I have the value set to a sum of "MALES", and the reference set to a sum of "POPULATION".&lt;/P&gt;&lt;P&gt;With my value and reference set, I can have the indicator set to "{percentage}". No advanced formatting or data expressions needed.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_0-1651760889769.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/40673i69EDB597641D4696/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_0-1651760889769.png" alt="jcarlson_0-1651760889769.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But this is a straightforward example. I'm not sure what your data looks like, but what statistic will you be trying to show? If I wanted something like the "average percentage" of the cities, this wouldn't cut it. In a normal distribution it'll be sort of close, but&amp;nbsp; any outliers are going to skew things quite a bit.&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 14:43:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171085#M6219</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-05-05T14:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171278#M6223</link>
      <description>&lt;P&gt;Hi! Thank you very much for your interesting answer, I learned a lot. Interesting to see how you use the percentage in the Indicator widget for aggregated version, I didn't know that was possible.&lt;/P&gt;&lt;P&gt;My aim is to&amp;nbsp; calculate the division of M3SK_HA_Lov / M3SK_HA per feature and use that data for further calculation:&lt;/P&gt;&lt;P&gt;The end result I need to show is how big area-percentage of the total area of certain geography, has features that exceed 49 % in the&amp;nbsp;M3SK_HA_Lov / M3SK_HA. Every feature has data describing AREA,&amp;nbsp;M3SK_HA_Lov&amp;nbsp; and M3SK_HA.&lt;/P&gt;&lt;P&gt;For example if 500 of 1500 features has 49 % or more in the division of&amp;nbsp;M3SK_HA_Lov / M3SK_HA, and that would mean they have an area sum of 1000 hectares, and the remaining features (1500) has an area sum of 4000, the percentage output I'm looking for is 1000/4000 = 25%&lt;/P&gt;&lt;P&gt;The filtration of the geography I was planning to use Map-filtration inside the dashboard.&lt;/P&gt;&lt;P&gt;What widget would you recommend for this purpose?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 20:11:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171278#M6223</guid>
      <dc:creator>ElinorBrehmer_Österhult</dc:creator>
      <dc:date>2022-05-05T20:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171296#M6226</link>
      <description>&lt;P&gt;Okay. That sounds like you will definitely need the Data Expression, then, since you're filtering individual features by that percentage. And you can still use an Indicator for the percentage.&lt;/P&gt;&lt;P&gt;Since we want to have the summed area of the &amp;gt; 49% features, we'll need to amend that original Data Expression to retain the area fields.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs = FeatureSetByPortalItem(
    Portal('https://www.arcgis.com'),
    '1db5c1db1d2d44a985b2a2144f6c663f', 0,
    ["M3SK_HA", "M3SK_HA_Lov"],
    false
)

return GroupBy(
    fs,
    'OBJECTID', // or whatever unique ID field your layer has
    [
        {
            name: 'Lovpercent',
            expression: 'M3SK_HA_Lov / M3SK_HA',
            statistic: 'SUM'
        },
        {
            name: 'M3SK_HA',
            expression: 'M3SK_HA',
            statistic: 'SUM'
        },
        {
            name: 'M3SK_HA_Lov',
            expression: 'M3SK_HA_Lov',
            statistic: 'SUM'
        }
    ]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once you have that, you can apply a filter to your indicator to only include features where&amp;nbsp;&lt;EM&gt;Lovpercent&amp;nbsp;&lt;/EM&gt;is 49% or greater.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_0-1651782464341.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/40730iB04DD4A97CE97431/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_0-1651782464341.png" alt="jcarlson_0-1651782464341.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then configure the indicator to use the M3SK_HA_Lov attribute as the value and M3SK_HA as the reference value, both set to Statistic: Sum, and have the indicator show the percentage.&lt;/P&gt;&lt;P&gt;In order to filter the&amp;nbsp;&lt;EM&gt;map&lt;/EM&gt;, though, you'll need something else. Maybe a number selector?&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 20:53:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171296#M6226</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-05-05T20:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171321#M6228</link>
      <description>&lt;P&gt;Thank you, wow, there are so many things one can do with these expressions! And thanks also for explaining how I could configure the indicator once the Data expression works&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_halo:"&gt;😇&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Ok, Data expression is needed and Indicator for percentage.&lt;/P&gt;&lt;P&gt;Your code works very good with another dataset I did for trial, but it gives no output for the data set I needed (maybe because I don't own it or because I choose wrong &lt;SPAN&gt;layerId)&lt;/SPAN&gt;. I will attach printscreens!&lt;/P&gt;&lt;P&gt;But even with the dataset which looks good in the Test Results in the Edit Data expression screen, it strangely says &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;EM&gt;unable to execute Arcade script&lt;/EM&gt;&lt;SPAN&gt;"&lt;/SPAN&gt; in the list of choices of data for the indicator afterwards. I will attach printscreen also for this.&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 22:04:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171321#M6228</guid>
      <dc:creator>ElinorBrehmer_Österhult</dc:creator>
      <dc:date>2022-05-05T22:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171330#M6229</link>
      <description>&lt;P&gt;I am experimenting now, and I found someone wrote in this forum that the expression&lt;SPAN&gt;&amp;nbsp;must return a FeatureSet. Can one add something like this to your code:?&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var Dict = {
'fields': [{'name':'Lovpercent', 'type':'esriFieldTypeDouble'},
{'name':'M3SK_HA_Lov', 'type':'esriFieldTypeDouble'},
{'name':'M3SK_HA', 'type':'esriFieldTypeDouble'}],
'geometryType': '',
'features':
[{'attributes':
{'Percent': ('M3SK_HA_Lov'/ 'M3SK_HA'),
'M3SK_HA_Lov': 'M3SK_HA_Lov',
'M3SK_HA': 'M3SK_HA'

}}]};

return FeatureSet(Text(Dict));
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 22:27:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171330#M6229</guid>
      <dc:creator>ElinorBrehmer_Österhult</dc:creator>
      <dc:date>2022-05-05T22:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171372#M6230</link>
      <description>&lt;P&gt;If you check out the &lt;A href="https://developers.arcgis.com/arcade/function-reference/data_functions/#groupby" target="_blank" rel="noopener"&gt;function reference pages&lt;/A&gt;, the&amp;nbsp;&lt;STRONG&gt;GroupBy&lt;/STRONG&gt; function returns a FeatureSet, which is why it's a great workaround.&lt;/P&gt;&lt;P&gt;The thing with Data Expressions is that, yes, they need to use a FeatureSet, but when you define them yourself, you need to add every feature one by one. Defining the FeatureSet's&amp;nbsp;&lt;STRONG&gt;features&lt;/STRONG&gt; array as you have in your expression would leave you with a single feature.&lt;/P&gt;&lt;P&gt;Think of it like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;features: [
    // feature 1
    { attributes: {
         attribute1: value,
         attribute2: value
    }},
    // feature 2
    { attributes: {
         attribute1: value,
         attribute2: value
    }},
    ... // and so on, for every feature in the layer
]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Manually defining each feature is not realistic, so most Data Expressions will use a for loop to iterate over the input features. If you wanted to go that route, you've got a bit more you'll need to add.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs = FeatureSetByPortalItem(
    Portal('https://www.arcgis.com'),
    '1db5c1db1d2d44a985b2a2144f6c663f', 0,
    ["M3SK_HA", "M3SK_HA_Lov"],
    false
)

var out_dict = {
    fields: [
        {name:'Lovpercent', type:'esriFieldTypeDouble'},
        {name:'M3SK_HA_Lov', type:'esriFieldTypeDouble'},
        {name:'M3SK_HA', type:'esriFieldTypeDouble'}
    ],
    geometryType: '',
    features: []
};

// Iterate over the fs FeatureSet
for (var f in fs){
    
    // calculate percentage
    var ha   = f['M3SK_HA']
    var ha_l = f['M3SK_HA_Lov']
    var p    = ha_l / ha
    
    // push values into feature array
    Push(
        out_dict['features'],
        {
            attributes: {
                Lovpercent: p,
                M3SK_HA_Lov: ha_l,
                M3SK_HA: ha
            }
        }
    )
}

return FeatureSet(Text(out_dict));&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 02:45:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171372#M6230</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-05-06T02:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171373#M6231</link>
      <description>&lt;P&gt;PS - This GitHub repo is probably the best collection of good, working examples of Data Expressions:&amp;nbsp;&lt;A href="https://github.com/Esri/arcade-expressions/tree/master/dashboard_data" target="_blank"&gt;https://github.com/Esri/arcade-expressions/tree/master/dashboard_data&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 02:44:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1171373#M6231</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-05-06T02:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1172399#M6239</link>
      <description>&lt;P&gt;Hi Josh!&lt;/P&gt;&lt;P&gt;Big thanks for the explanation how GroupBy works and iterations. The code you wrote was working very good and gave the desired output, I am very grateful for all help! &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 13:44:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1172399#M6239</guid>
      <dc:creator>ElinorBrehmer_Österhult</dc:creator>
      <dc:date>2022-05-10T13:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1172400#M6240</link>
      <description>&lt;P&gt;Thanks for the link, this page was very good to see real working examples also, even if I wouldn't have been able to do the code you wrote for me based on these examples. I will keep on learning.&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 13:46:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1172400#M6240</guid>
      <dc:creator>ElinorBrehmer_Österhult</dc:creator>
      <dc:date>2022-05-10T13:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1172404#M6241</link>
      <description>&lt;P&gt;You're welcome! I'm glad it's working for you!&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 13:56:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1172404#M6241</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-05-10T13:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1172408#M6242</link>
      <description>&lt;P&gt;Sorry, I missed this response last week! I know you accepted the other response as the solution, but are you still seeing issues with your other dataset?&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 14:00:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1172408#M6242</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-05-10T14:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Empty results from data expression in Dashboard</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1172713#M6249</link>
      <description>&lt;P&gt;Hi there! Oh no problem. Yes, I was accepting the other response as the solution because the code itself works, but only with the dataset that I own and not with my company dataset. I have asked them to look at my permissions for the dataset if that's what's blocking me from doing data expressions on it. /Elinor&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 10:18:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/empty-results-from-data-expression-in-dashboard/m-p/1172713#M6249</guid>
      <dc:creator>ElinorBrehmer_Österhult</dc:creator>
      <dc:date>2022-05-11T10:18:28Z</dc:date>
    </item>
  </channel>
</rss>

