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!
Les membres connectés peuvent publier, suivre les mises à jour, et plus encore. Nouveau ici ? Inscrivez-vous gratuitement.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.