Bug ID Number |
BUG-000163016 |
Submitted | November 16, 2023 |
Last Modified | September 26, 2025 |
Applies to | ArcGIS Field Maps |
Version found | Oct 2023 |
Operating System | Android |
Operating System Version | N/A |
Status | As Designed
After review by the development team, it has been determined that this behavior is as designed. See the Additional Information section for details.
|
Additional Information
The expression shown in the known limit returns the first pole in the database, not the closest pole. The following expression will return the global ID for the nearest pole.
var poles = FeatureSetByName($map, "Poles");
var nearestPole = First(Intersects(poles, Buffer($feature, 100, "feet")));
return nearestPole.globalid;
Workaround
Add the calculated expression to a string field in the form as a temporary workaround.
Steps to Reproduce