Bug
| Bug ID Number | BUG-000181229 |
|---|---|
| Submitted | November 25, 2025 |
| Last Modified | December 29, 2025 |
| Applies to | ArcGIS QuickCapture |
| Version found | 1.24 |
| Operating System | Apple iOS |
| Operating System Version | 26.0 |
| Status | Under Consideration |
Use the IsEmpty() Arcade function instead. Refer to the following code below:
// Create a feature set using the 'Regions' layer in the map
var regions = FeatureSetByName($map, 'Regions', ['name']);
// Intersect the current location with the regions and
// get the first region
var region = First(Intersects($feature, regions));
//IsEmpty function workaround
if (IsEmpty(region)) {
return "EMPTY";
} else {
return region["name"];
}
Bug ID: BUG-000181229
Software:
Get help from ArcGIS experts
Download the Esri Support App