My goal is to add a point to a master address table and reference the polygon taxlot layer to acquire the taxlot number. The taxlot number from the intersecting polygon taxlot layer would be passed to the master address table field. I have used arcade to populate fields such as automating latitude/longitude fields and sequentially number ID fields. I have used every example of intersects I can find but I cannot get this to work.
var taxlot = Intersects(FeatureSetByName($map, "REDMOND TAXLOTS"), $feature);
var test = taxlot["TAXLOT"];
return test
Test execution error: Execution error - Cannot access value using a key of this type. Verify test data.
Thanks
Mark C>