I have a code that if a dimension goes above a certain value lets say 120 it will un-hide. However when I tell a different value to be zero, I want it to override.
=if(Base In Frame Cabinet Carcass!Doors=0,True, if(Base In Frame Cabinet Carcass!Height_FFL>120,False,True))
I have a Height_FFL of 160, so the answer appears true, but the component does not hide?
idk that much. but as I know, to hide value should be true, so
=if(Base In Frame Cabinet Carcass!Doors=0,True, if(Base In Frame Cabinet Carcass!Height_FFL>120,true,false))
true and false will be change.