Hello everyone I am hoping I can get some help. So I created a new layer with the feature class to feature class tool. I basically just wanted all the pipes within an area to send out a map, but for some reason only one of the symbol classes is showing. The rest have counts, but will only show if I turn on show all other values even though that has a count of 0. One thing I think could be happening is the script for the custom field might be messing with something, but nothing looks wild to me.
var x = DomainName($feature, 'ASSETTYPE')
var x2 = $feature.ASSETTYPE
var z = DomainName($feature, 'ownedby')
var z2 = $feature.ownedby
return When(
(z2 == 30 && (x2 == 7 || x2 == 8 || x2 == 9 || x2 == 10)), z+" Plastic",
(z2 == 30 && (x2 != 7 || x2 != 8 || x2 != 9 || x2 != 10)), z+" "+x,
(z2 != 30 && (x2 == 7 || x2 == 8 || x2 == 9 || x2 == 10)), "Plastic",
(z2 != 30 && (x2 != 7 || x2 != 8 || x2 != 9 || x2 != 10)), x,
"Unknown"
);
Any ideas, this is making me feel dumb!