HOW TO
Creating sequential numberings for newly created features in ArcGIS Field Maps is a practical and effective way to manage and organize data during the data collection process, as it ensures data integrity, organization, and ease of analysis. This article describes the steps to create sequential numbering for newly created features in Field Maps using an Arcade expression.
var numberlist = FeatureSetByName($map,"<layer_name>") var topnum = Top(OrderBy(numberlist,'<field_name> DESC'),1) var counter = Number(Max(topnum,'<field_name>')) var id = counter+1 return id
The image below shows the sequential number for the field automatically updated in the form when a new point is added to the map.
Article ID: 000031315
Get help from ArcGIS experts
Download the Esri Support App