<?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: Configure Attribute - Attribute Expression in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/configure-attribute-attribute-expression/m-p/1158116#M45152</link>
    <description>&lt;P&gt;Then you use a logical AND to concatenate the conditions (A &amp;gt;= 1 AND A &amp;lt;= 75000)&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;return IIf($feature.A &amp;gt;= 1 &amp;amp;&amp;amp; $feature.A &amp;lt;= 75000, "Yes", "No")&lt;/LI-CODE&gt;</description>
    <pubDate>Sat, 26 Mar 2022 11:02:27 GMT</pubDate>
    <dc:creator>JohannesLindner</dc:creator>
    <dc:date>2022-03-26T11:02:27Z</dc:date>
    <item>
      <title>Configure Attribute - Attribute Expression</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/configure-attribute-attribute-expression/m-p/1157675#M45118</link>
      <description>&lt;P&gt;HI ESRI Community,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am very new to Arcade expression and is seeking for assistance. I am hoping to create something like:&lt;/P&gt;&lt;P&gt;IF $feature A is &amp;lt;= 75000&lt;/P&gt;&lt;P&gt;then $feature B = "Yes"&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF $feature B is =&amp;gt; 75001&lt;/P&gt;&lt;P&gt;then $feature B = "No"&lt;/P&gt;&lt;P&gt;Looking forward the solutions.&lt;/P&gt;&lt;P&gt;Also seeking for doco and video to improve my coding skills.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 04:11:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/configure-attribute-attribute-expression/m-p/1157675#M45118</guid>
      <dc:creator>Calvin_GIS</dc:creator>
      <dc:date>2022-03-25T04:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Configure Attribute - Attribute Expression</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/configure-attribute-attribute-expression/m-p/1157696#M45120</link>
      <description>&lt;LI-CODE lang="javascript"&gt;// Calculation Attribute Rule on your feature class
// field: B
// triggers: insert, update

return IIf($feature.A &amp;lt;= 75000, "Yes", "No")  // if condition is true, then "Yes", else "No"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The ArcGIS Developer page for Arcade is a good place to start:&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/" target="_blank" rel="nofollow noopener noreferrer"&gt;Getting Started | ArcGIS Arcade | ArcGIS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I find the function reference especially important, this is a page that I have bookmarked:&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/function-reference/" target="_blank" rel="nofollow noopener noreferrer"&gt;Function Reference | ArcGIS Arcade | ArcGIS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you want to play around, you can do so in the Arcade Playground:&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/playground/" target="_blank" rel="nofollow noopener noreferrer"&gt;Playground | ArcGIS Arcade | ArcGIS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you're looking for examples, there is a Github with Arcade expressions for diffferent profiles:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcade-expressions" target="_blank" rel="nofollow noopener noreferrer"&gt;GitHub - Esri/arcade-expressions: ArcGIS Arcade expression templates for all supported profiles in t...&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 08:07:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/configure-attribute-attribute-expression/m-p/1157696#M45120</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2022-03-25T08:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: Configure Attribute - Attribute Expression</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/configure-attribute-attribute-expression/m-p/1158096#M45149</link>
      <description>&lt;P&gt;Legend! Thank you so much for your help. Sorry to be a pain but I am just wondering what would the syntax if it's between 1 to 75000?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 05:16:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/configure-attribute-attribute-expression/m-p/1158096#M45149</guid>
      <dc:creator>Calvin_GIS</dc:creator>
      <dc:date>2022-03-26T05:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Configure Attribute - Attribute Expression</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/configure-attribute-attribute-expression/m-p/1158116#M45152</link>
      <description>&lt;P&gt;Then you use a logical AND to concatenate the conditions (A &amp;gt;= 1 AND A &amp;lt;= 75000)&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;return IIf($feature.A &amp;gt;= 1 &amp;amp;&amp;amp; $feature.A &amp;lt;= 75000, "Yes", "No")&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 26 Mar 2022 11:02:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/configure-attribute-attribute-expression/m-p/1158116#M45152</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2022-03-26T11:02:27Z</dc:date>
    </item>
  </channel>
</rss>

