Hi there,
I've made two expressions EF and Ha using Arcade that I'd like to use in a Map Viewer pop-up. I've created them in the Managed Expressions area.
If I want to use both of them to create an additional expression, how do I do this?
I'm still new to Arcade and don't have a background as a coder.
Hopefully this is an easy question for someone!


I tried $feature.EF/$feature.Ha. That doesn't work though because $feature are fields written into the table and Arcade is front end only?
EF's expression looks like this.
When($feature.ParameterTotal=='No vegetation Utility areas (tracks, buildings, yards)', 0,
$feature.ParameterTotal=='No vegetation Ponds/river/stream', 1,
$feature.ParameterTotal=='Non-woody vegetation Wetland/swamp/bog Grazed by animals Cultivated Fertilised', 2,
'No value');
Note: I will also need to swap out $feature.ParameterTotal to Parameter Total (Web arcade version). Currently I have it hardcoded while I try to figure out the correct expression syntax.
Ha's expression looks like this.
Round($feature.Shape__Area/10000,2)