I am using ArcGIS Pro 2.3. I have a point layer, for which I need to calculate a unique increasing number. I am trying to calculate a field "BlockUnique" with a sequential number sequence (1, 2, 3, and so on). I have another field "BlockID". I need the BlockUnique field to calculate the increasing number sequence and restart for every unique BlockID. An example below.
Is this able to be done without Python?
If python is required, how would I script this?
I am not even sure where to begin!
Example: BlockID on left, BlockUnique on right.
A 1
A 2
A 3
B 1
B 2
C 1
D 1
D 2