Hello, I have 2 classes, one called fibercable, and another one called Splice points. I am trying to create a rule for when a splice point intersects a fibercable at any point, it will get the value in the 'placement' row of the fibercable's attribute table where it intersects the new splice point, then it will apply it to the 'placement' row of the new splice point that has just been created. My code is below and it keeps giving an 'Indexable type expected' error. How would this potentially work? Thanks!
var fibercable = FeaturesetbyName($datastore, 'attributeruletest.sde.fibercable');
var ints = Intersects(fibercable, Geometry($feature));
iif(Count(ints) > 0, ints['placement'], false);