<?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 Conditional Formating in Tables using Advanced formatting in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/conditional-formating-in-tables-using-advanced/m-p/1146515#M5877</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I am creating a table with data collected in a survey, these data are discrete, my idea is to condition the data, for example, if the value is "0" it changes the format of the field to red and if it is "5" it changes to green.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;It is a simple process in an indicator, the problem is to define each of the cells to format the table depending on the column.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Can someone help me with the initial syntax to be able to find what I'm looking for?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VerleyAltamirano_0-1645544919670.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34625i1E688649D599B277/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VerleyAltamirano_0-1645544919670.png" alt="VerleyAltamirano_0-1645544919670.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Feb 2022 15:48:45 GMT</pubDate>
    <dc:creator>VerleyAltamirano</dc:creator>
    <dc:date>2022-02-22T15:48:45Z</dc:date>
    <item>
      <title>Conditional Formating in Tables using Advanced formatting</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/conditional-formating-in-tables-using-advanced/m-p/1146515#M5877</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I am creating a table with data collected in a survey, these data are discrete, my idea is to condition the data, for example, if the value is "0" it changes the format of the field to red and if it is "5" it changes to green.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;It is a simple process in an indicator, the problem is to define each of the cells to format the table depending on the column.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Can someone help me with the initial syntax to be able to find what I'm looking for?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VerleyAltamirano_0-1645544919670.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34625i1E688649D599B277/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VerleyAltamirano_0-1645544919670.png" alt="VerleyAltamirano_0-1645544919670.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 15:48:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/conditional-formating-in-tables-using-advanced/m-p/1146515#M5877</guid>
      <dc:creator>VerleyAltamirano</dc:creator>
      <dc:date>2022-02-22T15:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formating in Tables using Advanced formatting</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/conditional-formating-in-tables-using-advanced/m-p/1560225#M10514</link>
      <description>&lt;P&gt;Verley,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Something I've been playing with is the variables in the settings . Some of the Arcade coding I'm testing out is as follows:&lt;BR /&gt;var color= IIF($datapoint.[input location] = 0 , 'red', '')&lt;BR /&gt;&lt;BR /&gt;var color = IIF($datapoint.[input location] &amp;gt; 4, 'green','')&lt;/P&gt;&lt;P&gt;then doing this to the values&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[INPUT LOCATION]&lt;/SPAN&gt;&lt;SPAN&gt;: {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;displayText&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;Text&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$datapoint&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;[input location]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;textColor&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;backgroundColor&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;color&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;textAlign&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'right'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;iconName&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;iconAlign&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;iconColor&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;iconOutlineColor&lt;/SPAN&gt;&lt;SPAN&gt;: &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;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;try that and see if it gives you what you're looking for.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 19 Nov 2024 15:02:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/conditional-formating-in-tables-using-advanced/m-p/1560225#M10514</guid>
      <dc:creator>abelvang_3ID</dc:creator>
      <dc:date>2024-11-19T15:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formating in Tables using Advanced formatting</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/conditional-formating-in-tables-using-advanced/m-p/1560229#M10515</link>
      <description>&lt;P&gt;You can also reference the link below for further help on this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://doc.arcgis.com/en/dashboards/10.9.1/create-and-share/advanced-formatting.htm" target="_blank"&gt;https://doc.arcgis.com/en/dashboards/10.9.1/create-and-share/advanced-formatting.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 15:05:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/conditional-formating-in-tables-using-advanced/m-p/1560229#M10515</guid>
      <dc:creator>abelvang_3ID</dc:creator>
      <dc:date>2024-11-19T15:05:01Z</dc:date>
    </item>
  </channel>
</rss>

