<?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: Arcade: Auto-populate a field based on another field's value count in ArcGIS Field Maps Questions</title>
    <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556436#M9904</link>
    <description>&lt;P&gt;Thanks Holly that's useful but i think it'll be needed for this project but it might be useful for another project in future so thank you so much&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Right now i am still trying to figure out why i am getting that error&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 07 Nov 2024 18:22:57 GMT</pubDate>
    <dc:creator>Ed_</dc:creator>
    <dc:date>2024-11-07T18:22:57Z</dc:date>
    <item>
      <title>Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556378#M9896</link>
      <description>&lt;P&gt;Good morning folks, hope all is well, so i have a field say attribute1 that has "Yes", "No" and "NA" list values to choose from in the Field Maps survey.&lt;BR /&gt;&lt;BR /&gt;Then i have another field say&amp;nbsp;attribute2 that will be auto-populated such that whenever the user select Yes, Arcade will count it and return "Value 1" the first time. Similarly, the next time the user select "Yes", Arcade will return "Value 2" and so on kind of like a counter.&lt;/P&gt;&lt;P&gt;Desired output:&lt;/P&gt;&lt;P&gt;Attribute1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Attribute2&lt;/P&gt;&lt;P&gt;Yes&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Value 1&lt;/P&gt;&lt;P&gt;Yes&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Value 2&lt;/P&gt;&lt;P&gt;No&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;No&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;NA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;Yes&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Value 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Arcade expression:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// Store the layer as a variable
var layer = FeatureSetByName($map, "sf")

// Filter the attribute value
var YesVal = Filter(layer, "attribute1" == "Yes")

// Count the number of "Yes" features
var YesCount = Count(YesVal) 

// If the current feature's attribute is "Yes", add 1 to the count
if ($feature.attribute1 == "Yes") {
    return "Value", yesCount + 1;
} else {
    return null;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;Test execution error: t.charAt is not a function. Verify test data.&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 07 Nov 2024 17:04:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556378#M9896</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2024-11-07T17:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556382#M9897</link>
      <description>&lt;P&gt;Change line 12 to this&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;return `Value ${yesCount + 1}`&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 17:11:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556382#M9897</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-11-07T17:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556402#M9898</link>
      <description>&lt;P&gt;You likely already thought of this and maybe it doesn't matter for your purposes, but this method will result in Attribute2 duplicates if Field Maps users delete features other than the newest. I get around this by adding a field to store the numbers. Then a script on that number field filters for the numbers that meet my criteria, sorts them largest to smallest, and adds 1 to the first. Then the script on my version of the attribute2 field just concatenates the value and the number from the new field.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 17:43:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556402#M9898</guid>
      <dc:creator>HollyTorpey_LSA</dc:creator>
      <dc:date>2024-11-07T17:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556409#M9900</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;thank you for the quick response&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; i am&amp;nbsp; still getting the same error though&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Test execution error: t.charAt is not a function. Verify test data.&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// Store the layer as a variable
var layer = FeatureSetByName($map, "sf")

// Filter the attribute value
var YesVal = Filter(layer, "attribute1" == "Yes")

// Count the number of "Yes" features
var YesCount = Count(YesVal) 

// If the current feature's attribute is "Yes", add 1 to the count
if ($feature.attribute1 == "Yes") {
    return `Value ${yesCount + 1}`;
} else {
    return null;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 17:51:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556409#M9900</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2024-11-07T17:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556414#M9902</link>
      <description>&lt;P&gt;Hi Holly, thank you for your quick response as well&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; can you explain a bit further&amp;nbsp;&lt;/P&gt;&lt;P&gt;like how do you do this "&lt;SPAN&gt;by adding a field to store the numbers&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;Also can you please share a workable code example on "&lt;SPAN&gt;Then a script on that number field filters for the numbers that meet my criteria, sorts them largest to smallest, and adds 1 to the first. Then the script on my version of the attribute2 field just concatenates the value and the number from the new field.&lt;/SPAN&gt;" based on the Arcade expression i have shared?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 17:55:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556414#M9902</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2024-11-07T17:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556431#M9903</link>
      <description>&lt;P&gt;Sure. The example I'm referring to is a tree data collection template that is used for different projects all the time. We set up a new Field Maps map for each new project with a field calculation for the project number field. Trees are numbered sequentially starting at 1 for each new project, and that number is stored in the tree number field. If I just counted the trees for the project and added one, I'd end up with duplicate tree numbers if users deleted features (if they already had trees 1, 2, and 3, then deleted tree 1, then added a new tree, the new tree would be numbered tree 3 even though I already have a tree 3). So instead I record the numbers in an integer field, sort them descending, and then add 1 to the first number in the sorted set.&lt;BR /&gt;&lt;BR /&gt;Here's the script that does that:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var nextTreeNumber = 1
var projectNumber = upper($feature.ProjectNum)

// If this is an existing feature with a Tree Number, return that
if ($editcontext.editType == 'UPDATE') {
  if(!IsEmpty($feature.TreeNumber)) {
    return $feature.TreeNumber
  }
}

// Otherwise, get tree number values for the whole Arborist Template featureset
// Check that the featureset isn't empty
if (!IsEmpty(first($featureset))) {

  // Query the featureset for trees with the same project number (even if it's null)
  if (isEmpty(projectNumber)) {
    var projectTrees = filter($featureset, "ProjectNum IS NULL")

  } else {
    var projectTrees = filter($featureset, "UPPER(ProjectNum) = @projectNumber")
  }

  if (!IsEmpty(first(projectTrees))) {
    var maxTreeFeature = First(OrderBy(projectTrees, "TreeNumber DESC"))
    
    // if there are no trees with the same project number, return 1
    if (maxTreeFeature.TreeNumber == null) { return nextTreeNumber }

    // if there are trees with the same project number, add 1 to the highest one
    var maxTreeNumber = maxTreeFeature.TreeNumber
    nextTreeNumber = maxTreeNumber + 1
    return nextTreeNumber
  } else { return nextTreeNumber }
} else { return nextTreeNumber }&lt;/LI-CODE&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 18:17:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556431#M9903</guid>
      <dc:creator>HollyTorpey_LSA</dc:creator>
      <dc:date>2024-11-07T18:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556436#M9904</link>
      <description>&lt;P&gt;Thanks Holly that's useful but i think it'll be needed for this project but it might be useful for another project in future so thank you so much&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Right now i am still trying to figure out why i am getting that error&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 18:22:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556436#M9904</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2024-11-07T18:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556451#M9907</link>
      <description>&lt;P&gt;What happens if you only use one equals sign in the query in your filter parameters? ("attribute1 = 'Yes'")&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 18:50:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556451#M9907</guid>
      <dc:creator>HollyTorpey_LSA</dc:creator>
      <dc:date>2024-11-07T18:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556455#M9908</link>
      <description>&lt;P&gt;then it returns an error for the Filter Function Invalid variable assignment&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 18:54:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556455#M9908</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2024-11-07T18:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556458#M9909</link>
      <description>&lt;P&gt;This is the how Attribute1 actually looks like&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="Ed__0-1731005841638.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119074i10AB461268801E6C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ed__0-1731005841638.png" alt="Ed__0-1731005841638.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and this is Attribute2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ed__1-1731005897673.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119075i3F0C5804240EC421/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ed__1-1731005897673.png" alt="Ed__1-1731005897673.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 18:58:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556458#M9909</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2024-11-07T18:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556460#M9910</link>
      <description>&lt;P&gt;You are using YesCount at the beginning but in the loop you have yesCount.&amp;nbsp; That could be it.&lt;/P&gt;&lt;P&gt;But as posted this will all break if someone deletes a record in the middle.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 19:04:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556460#M9910</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2024-11-07T19:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556464#M9911</link>
      <description>&lt;P&gt;Since that field has Domains, are you using the same value for Label and the Code?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 19:11:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556464#M9911</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-11-07T19:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556528#M9912</link>
      <description>&lt;P&gt;So your line 5 now looks like this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var YesVal = Filter(layer, "attribute1 = 'Yes'")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And as&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;said, if your code and label are different, you could be getting an empty featureset from that filter. Maybe wrap that count expression with an if statement checking if your featureset is empty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;if (!isEmpty(first(YesVal))) {
  var YesCount = Count(YesVal) 
} else YesVal = 0 &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 21:00:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556528#M9912</guid>
      <dc:creator>HollyTorpey_LSA</dc:creator>
      <dc:date>2024-11-07T21:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556532#M9913</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/554773"&gt;@Ed_&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Try the solution below. My assumption is you it may be something to do with the layer name but it is hard to say what the issue is.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// Store the layer as a variable
var layer = FeatureSetByName($map, "sf")

// Filter the attribute value and count values
var FilterField = "attribute1"
var FilterValue = 'YES'
var YesCount = Count( Filter( layer , FilterField + ' = @FilterValue' ) )

// If the current feature's attribute is "Yes", add 1 to the count
iif ($feature.attribute1 == "Yes" , yesCount + 1 , null )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Also, is your problem similar to the one found on stack overflow. Because if it is, then that would help anyone else here point you in the right direction.&lt;/P&gt;&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/21211380/charat-is-not-a-function" target="_blank" rel="noopener"&gt;Similar sounding issue&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 21:05:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556532#M9913</guid>
      <dc:creator>RPGIS</dc:creator>
      <dc:date>2024-11-07T21:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Auto-populate a field based on another field's value count</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556554#M9915</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;, thank you for pointing that out so yes the domain values and labels are the same as you can see below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ed__0-1731014777656.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119092i869406BFE78972A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ed__0-1731014777656.png" alt="Ed__0-1731014777656.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;However, as if this moment they are no Yes values in the attribute it self, right now they are all Not rated&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ed__1-1731014819255.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119093iD3A182F0DB424841/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ed__1-1731014819255.png" alt="Ed__1-1731014819255.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 21:27:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-auto-populate-a-field-based-on-another/m-p/1556554#M9915</guid>
      <dc:creator>Ed_</dc:creator>
      <dc:date>2024-11-07T21:27:51Z</dc:date>
    </item>
  </channel>
</rss>

