I have a formula node with the follwing:
Inputs:E,X,T,PD,I
Outputs:PK,PD
The statement inside the formula node is:
if (Eelse if (PD=1) if (E else if (E<=X) ;
else PK=I, PD=1;
The logic seems to be working the way I want, the problem is in the last else statement. PK is never assigned the value of I. however, PD is assigned the value of 1. There are no errors indicated.
The source of the I input is the iteration # of the For loop where this formula node is located.
Anyone see what I am missing??
Thanks,
Mike