Hello
I have this code which return specific fields but right now I need to return all values. I can write all attribute in code but the table I refer has lots of fields. is it any way I can get all fields on table to use it in pop up in web map
var fips = $feature["parent_id"]
var dd = FeatureSetByName($map,
"Survey v2", ['age','gender','race'],False)
var fillterSur = "survey_id = @fips"
var cou = First(Filter(dd, fillterSur))
var popupTEXT = "Age: "
+Text(cou,'#,###')
var popupTEXT = "gender: "
+Text(cou,'#,###')
var popupTEXT = "race: "
+Text(cou,'#,###')
return popupTEXT