I have a feature class that I joined with a table in Portal, by clicking on Analysis>>Summarize Data>>Join Features. This is a one to many join.
When I try to write my symbology Arcade expression, it will not find a feature that has both values (there are features/parcels that have both values after the join). Any ideas?
if( $feature["media_type"] == 'Curb Tie' && $feature["media_type"] == 'Building Inspector Curb Tie') {
return "Curb Tie"
}