Thanks Doug,
Interesting that it is working for you...
I updated the expression as you suggested and am still seeing a blank return in Field Maps.
var sql = "rel_globalid = '" + $feature.globalid + "'";
var tbl = Filter(FeatureSetByName($map,"Bridge Attributes", ['*'], false), sql);
var val
for (var row in tbl){
val = row.client_name
}
return val
When I update the expression to not include the Filter function it works.
var sql = "rel_globalid = '" + $feature.globalid + "'";
var tbl = FeatureSetByName($map,"Bridge Attributes", ['*'], false);
var val
for (var row in tbl){
val = row.client_name
}
return val