Hello,
Can we track the edit date for a single field?
Background:
I have an address point layer with resident names. I would like to track when the name of the resident is updated. Essentially, what I would like to do is "If this field is updated then calculate the edit date in another field."
Thanks!
Solved! Go to Solution.
An attribute rule on the edit date field similar to this should work:
if ($originalFeature.Name== $feature.Name)
return $feature.Name
else
return Now()
R_
An attribute rule on the edit date field similar to this should work:
if ($originalFeature.Name== $feature.Name)
return $feature.Name
else
return Now()
R_
Thank you for your help. The script seems to work!