<?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: Auto Calculations in Tasks for Field Maps in ArcGIS Field Maps Questions</title>
    <link>https://community.esri.com/t5/arcgis-field-maps-questions/auto-calculations-in-tasks-for-field-maps/m-p/1678203#M12188</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/66627"&gt;@apgis16&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;What you're describing is achievable, but I think the best approach is going to depend on if you are creating new task features from scratch, or if you enabled tasks on an existing layer, and therefore already have lots of features that are now tasks-enabled.&lt;/P&gt;&lt;P&gt;If users will be creating new task features from scratch, I think the simplest approach will be to use the form. You can set the esritask_assignee field as required in the form, so it has to be filled in when a new task is created, and then set a calculated expression on the status field that sets the status to "Assigned" when the assignee field is not null. That should get the behavior you're looking for.&lt;/P&gt;&lt;P&gt;If you are using existing features and want to use the layout feature actions, then you can add an Edit Action to the layout and add a "manual and automatic update" to the edit action. The manual update should be the assignee field, and the automatic update should set the status field to assigned. So when someone uses that button to pick an assignee for the task, they can manually choose the assignee and the status will get updated automatically.&lt;/P&gt;&lt;P&gt;I hope that helps, I'm happy to provide more guidance if you're still stuck.&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
    <pubDate>Thu, 15 Jan 2026 20:03:45 GMT</pubDate>
    <dc:creator>ChrisDunn1</dc:creator>
    <dc:date>2026-01-15T20:03:45Z</dc:date>
    <item>
      <title>Auto Calculations in Tasks for Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/auto-calculations-in-tasks-for-field-maps/m-p/1677974#M12183</link>
      <description>&lt;P&gt;What I am trying to do is theoretically very simple but once try clicking "start" in field maps to start the task, I keep getting stuck in a loop between the layout filters and calculated expressions in ArcGIS Field Maps Designer. All I am trying to do is have the &lt;EM&gt;esritask_assignee&lt;/EM&gt; be a required field and have the &lt;EM&gt;esritask_status&lt;/EM&gt; field automatically calculate as assigned once the user selects an assignee. It doesn't make sense for the user to have to switch the status to assigned manually when they pick an assignee in the same form. What is the correct configuration to do this? I don't need the ability to have any tasks be unassigned at all. I also didn't add anything different from the default configuration that they offer when you enable tasks on a layer.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 22:10:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/auto-calculations-in-tasks-for-field-maps/m-p/1677974#M12183</guid>
      <dc:creator>apgis16</dc:creator>
      <dc:date>2026-01-14T22:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Calculations in Tasks for Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/auto-calculations-in-tasks-for-field-maps/m-p/1678203#M12188</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/66627"&gt;@apgis16&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;What you're describing is achievable, but I think the best approach is going to depend on if you are creating new task features from scratch, or if you enabled tasks on an existing layer, and therefore already have lots of features that are now tasks-enabled.&lt;/P&gt;&lt;P&gt;If users will be creating new task features from scratch, I think the simplest approach will be to use the form. You can set the esritask_assignee field as required in the form, so it has to be filled in when a new task is created, and then set a calculated expression on the status field that sets the status to "Assigned" when the assignee field is not null. That should get the behavior you're looking for.&lt;/P&gt;&lt;P&gt;If you are using existing features and want to use the layout feature actions, then you can add an Edit Action to the layout and add a "manual and automatic update" to the edit action. The manual update should be the assignee field, and the automatic update should set the status field to assigned. So when someone uses that button to pick an assignee for the task, they can manually choose the assignee and the status will get updated automatically.&lt;/P&gt;&lt;P&gt;I hope that helps, I'm happy to provide more guidance if you're still stuck.&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jan 2026 20:03:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/auto-calculations-in-tasks-for-field-maps/m-p/1678203#M12188</guid>
      <dc:creator>ChrisDunn1</dc:creator>
      <dc:date>2026-01-15T20:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Calculations in Tasks for Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/auto-calculations-in-tasks-for-field-maps/m-p/1680349#M12225</link>
      <description>&lt;P&gt;This is what I ended up doing, as recommended by Esri:&lt;/P&gt;&lt;P&gt;When you use a calculated expression to automatically populate an attribute like Assignee, that expression will be the only way that attribute is calculated. So for instance, if I use an Arcade expression like this to change Status to Assigned when there the Assignee field has been populated:&lt;/P&gt;&lt;P&gt;IIf(!IsEmpty($feature.esritask_assignee), "Assigned", "Unassigned")&lt;/P&gt;&lt;P&gt;I will not be able to change the Status to "In Progress" from Field Maps when I pick up the job because I've set this expression to be the exclusive way that field is calculated.&lt;/P&gt;&lt;P&gt;The work around here is to have the Status set to "Assigned" as a default value when you create a new Task. You can do this under the Template tab in Field Maps Designer. That way you won't have any Tasks with Status = "Unassigned" and it can continued to be updated throughout the lifecycle of the Task.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I know it's not ideal, but right now I think that's the best option. Let me know if you have any other questions, and I'll be sure to pass this feedback to the Field Maps team.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 21:05:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/auto-calculations-in-tasks-for-field-maps/m-p/1680349#M12225</guid>
      <dc:creator>apgis16</dc:creator>
      <dc:date>2026-01-27T21:05:14Z</dc:date>
    </item>
  </channel>
</rss>

