Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
I’m encountering a challenge where I need to filter out all assemblies with the exception of certain ones.
Typically, I use the command "&asm.mbr.type != ASSEMBLY" to filter out assemblies, but now I need to modify this to exclude specific assemblies such as F902355, a5879, etc.
Using Creo 8.
Solved! Go to Solution.
Hi,
I think you have to apply repeat region relations to distinguish assemblies/parts you want/don't want to display. These relations can define internal repeat region parameter. Later you can use this parameter to filter assemblies. Unfortunately you have to display this parameter in repeat region, too using rpt.rel.parname notation.
Hi @AA_11007722 ,
You may try excluding using names, e.g. &asm.mbr.name != part_a, part_b, part_c
For more information refer article at https://www.ptc.com/en/support/article/CS48035
Thanks.
The problem I’m encountering with the rule (&asm.mbr.name != part_a, part_b, part_c) is that it imposes a restriction on the number of assemblies (due to a character limit), beyond which it triggers an error.
Hi,
I think you have to apply repeat region relations to distinguish assemblies/parts you want/don't want to display. These relations can define internal repeat region parameter. Later you can use this parameter to filter assemblies. Unfortunately you have to display this parameter in repeat region, too using rpt.rel.parname notation.