"and" "or" function

Hello
Are you aware if it is possible to use " and " and " or " functions with the FRFI function?
Example: Iff A=0 and B=1 then C=3
I would need it in SmartProperties.

1 Like

No possibility in 1 time in my opinion.
On the other hand, it is possible to do
If A=0 then property verifA=ok
If B=1 then property verifB=ok
Concatenating verifA and B
and if the propr verifA+B=okok then C=3
Or if A, B and C are t dimensions, maybe it's possible via a family of parts or equations.
Smartproperties Conditional Property Help:

The equations:
https://help.solidworks.com/2020/french/SolidWorks/sldworks/t_creating_equation.htm

2 Likes

:slight_smile: Erci, yes that's what I did, but I was hoping to be able to make it easier.:slight_smile:

After thinking about it, by nesting otherwise it will work too:
IFF(A=0|IFF(B=1|C=1|False)|False)
On the other hand, if a lot of condition it quickly becomes complicated.

3 Likes

I didn't know that I could accumulate the IFFs. Since I only have two conditions, it will do it very well.
Thank you

1 Like