Instructions provided describe how to create sequential numbers in a field in ArcMap using Python in the Field Calculator. Note:ArcMap is inMature supportand will be retired March 1, 2026. There are no plans for future releases of ArcMap, and it is recommended that you migrate ...
(I have ArcGIS 10.3.1 by the way) Source: 38517 - Create sequential numbers in a field using Python in the Field Calculator Pre-Logic Script Code: rec=0 def autoIncrement(): global rec pStart = 1 pInterval = 1 if (rec == 0): rec = pStart else: rec += pInterval...