Hi,
For my model I want to make one process of my MultiProcessor dependent on the sign of a label. So, if the label ("ProcessTime") on a flowitem is negative (<0), the Process Time must be equal to 0. If the label ("ProcessTime") on a flowitem is equal or larger than zero, then the ProcessTime should take the value of that label ("ProcessTime"). I tried to construct this logic through the following expression, but it won't work:
if(getlabel(item, "ProcessTime") > 0, getlabel(item, "ProcessTime"), 0)
Can someone help me on constructing this logic, thanks in advance!