I'm trying to find a way to quickly list all of the parts in a project that have a specific parameter that equals a specific value. The "Find Text" tool (Ctrl+F) in the schematic editor only seems to search part and net designators. I could sift through the SCH List to find the right parts, except the list doesn't seem to show custom parameters for some reason (they appear in the "Choose Columns" dialog, but are blank when displayed in the SCH List window). There are built-in query fields to return *parameters* that have specific names (ParameterName) or specific values (ParameterValue), but I can't seem to find a way to return the *parts* that have those parameters. The ParametersList field seems like it might work, but I can't get it to return anything at all, and while the example seems like it should return a part the description doesn't mention parts at all:
PARAMETERSLIST FIELD
Description
Returns all Parameter Set, Pin, Port, Probe, and Sheet Symbol objects having a Parameters List property that complies with the Query.
Note: The ParametersList property is only defined for Parameter Set, Pin, Port, Probe, and Sheet Symbol objects.
Syntax
ParametersList : String
Example
ParametersList = 'Manufacturer=Motorola, Supplier=Dick Smith Electronics'
Returns all Parameter Set, Pin, Port, Probe, and Sheet Symbol objects that have two parameters, when the first parameter has a Name property of 'Manufacturer' and a Value property of 'Motorola', and the second parameter has a Name property of 'Supplier' and a Value property of 'Dick Smith Electronics'.
Is there another way to do this that I'm missing?