Hello,
Is there a method to have a calculation attribute rule set a field to null on one of the segments created when a polyline is split using the Split editing tool? The goal is to preserve the field value on one of the lines but set it to null on the other segment created during the split. I have noticed Pro assigns the smaller of the two lines the new global and objectid which is fine and I would actually prefer the smaller segment be the one that has the field set as null. I have tried a few different things such as comparing original geometry and globalid for example if(Geometry($originalfeature) != Geometry($feature) && $originalfeature.globalid != $feature.globalid) return null It detects the change in geometry, but doesn't seem to respect the globalid compare on the split feature. Is the behavior of Split tool considered an Insert and not an Update? I only want the rule to run when a line is split. Not run if the lines geometry changes via edit vertices or reshaped and is not split. My current thought is I have to do an Intersects with OrderBy and First, to pull the newest feature created after the split then update the field on that feature. Any help is appreciated. Thanks.