Hello all,
I'm attempting to create an arcade expression to do the following:
Any insight will be greatly appreciated! Thank you.
// load the feature set using an appropriate FeatureSetBy* function
// see FeatureSetByID and below:
// https://developers.arcgis.com/arcade/function-reference/data_functions/#featuresetbyid
var fs = FeatureSetBy*(...)
// filter the feature set by county ID
// your scrrenshot shows field aliases, not names, check that I guessed the right name
var county_id = $feature.CountyID
var fs_county = Filter(fs, "CountyID = @county_id")
// return the sum of field "Acres"
return Sum(fs_county, "Acres")
This was a great help. Thank you Johannes!