<?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: reference multiple values in an Indicator in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1381162#M9049</link>
    <description>&lt;P&gt;Ok, that makes sense, I didn't see any other way to insert multiple values as you did.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 12 Feb 2024 17:22:22 GMT</pubDate>
    <dc:creator>clt_cabq</dc:creator>
    <dc:date>2024-02-12T17:22:22Z</dc:date>
    <item>
      <title>reference multiple values in an Indicator</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1380636#M9041</link>
      <description>&lt;P&gt;I'd like to be able to display the number of 'unsafe' buildings our inspection team 'clears' in terms of the number of buildings cleared cumulatively in the current year, the current month, and last month. I can do this using 3 separate indicators, as in the screen shot below, but would like to see if there is a way to do this in a single widget.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="clt_cabq_0-1707515942206.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94373iC568D3C22F256B0A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="clt_cabq_0-1707515942206.png" alt="clt_cabq_0-1707515942206.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 22:01:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1380636#M9041</guid>
      <dc:creator>clt_cabq</dc:creator>
      <dc:date>2024-02-09T22:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: reference multiple values in an Indicator</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1380671#M9042</link>
      <description>&lt;P&gt;You can't put line breaks into an indicator, so you could do something like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="indicator1.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94379i9C911CF94E12909E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="indicator1.png" alt="indicator1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But honestly, that isn't the most intuitive presentation of data. A better one might be a Details element, which you could configure like this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="indicator2.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94381i26A9BBB976B54CDC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="indicator2.png" alt="indicator2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Sat, 10 Feb 2024 00:15:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1380671#M9042</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-02-10T00:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: reference multiple values in an Indicator</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1381022#M9046</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/753599"&gt;@KenR&lt;/a&gt;&amp;nbsp;, thanks - Are you using a data expression to add those additional values into either the indicator or the detail widget?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 14:23:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1381022#M9046</guid>
      <dc:creator>clt_cabq</dc:creator>
      <dc:date>2024-02-12T14:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: reference multiple values in an Indicator</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1381138#M9047</link>
      <description>&lt;P&gt;Yes, this is using a Data Expression. It would look something like this&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var p = Portal("https://arcgis.com");
var poles = FeatureSetByPortalItem(p, yourItemID, 0);

//your code to set variables thisYearValue, thisMonthValue, and lastMonthValue

var jsonDictionarySTART = {
  fields: [{
    alias: "This Year",
    name: "THISYEAR",
    type: "esriFieldTypeInteger",
  },
  {
    alias: "This Month",
    name: "THISMONTH",
    type: "esriFieldTypeInteger",
  },
  {
    alias: "Last Month",
    name: "LASTMONTH",
    type: "esriFieldTypeInteger",
  },
  ],
  spatialReference: { wkid: 4326 },
  geometryType: "esriGeometryPoint",
  features: [{
     attributes: {
      THISYEAR: thisYearValue,
      THISMONTH: thisMonthValue,
      LASTMONTH: lastMonthValue
    },
  }]
};
 
return FeatureSet(Text(jsonDictionarySTART));&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 12 Feb 2024 16:44:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1381138#M9047</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-02-12T16:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: reference multiple values in an Indicator</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1381162#M9049</link>
      <description>&lt;P&gt;Ok, that makes sense, I didn't see any other way to insert multiple values as you did.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 17:22:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/reference-multiple-values-in-an-indicator/m-p/1381162#M9049</guid>
      <dc:creator>clt_cabq</dc:creator>
      <dc:date>2024-02-12T17:22:22Z</dc:date>
    </item>
  </channel>
</rss>

