âIs it possible to search for a certain value from all of the properties of a property set? For example, if I want to search for âEI90â from the property set âMagiCAD Pset_Elbowâ but the exact property that contains the information varies.â
You can use the wildcard (*) for that.
So you search in all property sets and all properties:
22e41fe5-7039-4d4e-8d82-2c8ff39e3960-image.png
However, I donât know how this affects your performance, so like you found yourself already, rather use, for instance:
"MagiCAD Pset_*.Insulation*"
Within the values you can also use wildcards
EI90 --> only matches 'EI90'
*EI90 --> matches 'Firerating EI90'
or 'EI90'
EI90* --> matches 'EI90 Firerating'
or 'EI90'
*EI90* --> matches 'Firerating EI90 minutes'
or 'Firerating EI90'
or 'EI90 Firerating'
or just 'EI90'