Showing posts with label Rework. Show all posts
Showing posts with label Rework. Show all posts

Thursday, November 7, 2019

Rework Queries

(ObjectKind = 'Track') And OnSignal And (Net = 'No Net')

(ObjectKind = 'Track') and OnSignal and HasViolations



Find Dead Vias, Tracks and Arcs

(((((ObjectKind = 'Track') OR (ObjectKind = 'Arc')) And OnSignal)) Or IsVia) And NOT InAnyNet And Not InAnyComponent And NOT (Keepout = 'True')


Monday, May 22, 2017

Find Dead Copper

Query to select all dead copper for deletion:

Modified Query - I added And NOT (Keepout = 'True')

(((((ObjectKind = 'Track') OR (ObjectKind = 'Arc')) And OnSignal)) Or IsVia) And NOT InAnyNet And Not InAnyComponent And NOT (Keepout = 'True')


Source Dennis Saputelli
https://forum.live.altium.com/#posts/221702/645693

That's it !