Help With Attribute Driven Symbology

329
0
11-24-2021 01:48 PM
RyanKekes
New Contributor

I have an alignment which I need to show chainage, but for a certain part of it, I dont want to show anything,  1500m, 2000m and 2500m

I managed to figure out how not to show the text string for the symbology using the attribute driven properties:

 

if ($measure == 1500 || $measure == 2000 || $measure == 2500){
return none
}
else{
return $measure +"m"
}

 

But when it comes to the shape point feature, I cant figure out how to hide the dash line for the same values.  Any help would be appreciated.

24.PNG

0 Kudos
0 Replies