I've been trying to create a way for a Assembly level equation to read if a Component or Assembly Level Feature is suppressed and change a Component Linear Patter based off that. I've tried many different variations of the equations:
= IIF( "Part1@Assembly" = 1,1,0)
= IIF ( "Part1@Assembly" like 1,1,0)
= IIF ( "Part1@Assembly" like "suppressed", 1,0)
= IIF ( "Part1@Assembly" = "suppressed",1,0)
All of these equations don't cause any errors but they don't change at all when the component gets suppressed.
Is there something I'm missing?
SolidworksAssemblies