I've got a corridor I am modeling with conditional statements. Based on the factors I am coming to the conclusion I need an IF then AND statement to test two conditions at the same time.
Has anyone come across this?
I've attached a working PDF of the x-sections showing the 4 cases and what I am trying to accomplish. Thank you in advance for any insight!
You can accomplish the same effect of an AND statement by putting an IF condition nested inside another IF condition. So you can say:
IF (x is true)
IF (y is true)
'instructions that will occur when x and y are both true'
ENDIF (y)
ENDIF (x)