If statement not possible with mixed units?
If statement not possible with mixed units?
(OP)
In the Expression statement "If(Angle>0)(dimension1)else(dimension2) the variable Angle is in units of degrees and dimension1 and dimension2 are in units of inches. I get an error because of mixed units. Why is this not possible? I want one dimension for a positive angle and another dimension if the angle is negative. How can I accomplish this?
Thanks in advance,
Jim Weisner
Senior Designer
Thanks in advance,
Jim Weisner
Senior Designer





RE: If statement not possible with mixed units?
Try this:
CODE
If(Angle>0[degrees])(dimension1)else(dimension2)www.nxjournaling.com
RE: If statement not possible with mixed units?
I'll remember.
"My english is bad ? That's why i'am french."
RE: If statement not possible with mixed units?