- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a SHP file of a road network in AutoCAD Map 3D where I want to exclude road name labelling with the word 'private' or that of a particular value (which I can access in a list). Basically, any street name with the word "private" I do not want labelled. In ArcGIS Pro, this is easy: I choose the property I want (`STNAME`) and then in the SQL tab I choose the same expression where `STNAME` does not include the text `PRIVATE`
STNAME NOT LIKE '%PRIVATE%'
In Map 3D, this same expression returns an error "The operator syntax: 'NOT' is invalid. Click here to move the cursor to the error(9)". When I remove `NOT`, I get the error "Error: Result types are mismatched: the validation operation expected 'Text' but the expression returned 'Boolean'".
Any solutions on how to omit the entries I want that contain the specific words?
Solved! Go to Solution.