Hello, We have developed a Field Map with a couple of Forms included and within the form we have 7 Arcade expressions to auto fill the fields. They are all simple expressions, such as getting user details or intersects to other layers within the web map. We have had to disable most of them as they don't always calculate in the field. They work fine in the office on Wi-Fi and mobile data. What could be the possible issue?
example:
var regions = FeatureSetByName($map,"Regions Operational", ['Name'])
// Intersect the current location with the regions and get the first region
var region = First(Intersects($feature, regions))
// If the current location does intersect a feature, return the name of the region. Otherwise, return null
if (!IsEmpty(region)) {
return region['Name']
} else {
return null
}