Hi All,
I have long IF statement runs through several conditions and assigns a value for each condition.
For example:
IF stockroom = 6 AND inventory < 0 THEN "Stockout"
ELSEIF PO_category = "Past Due" THEN "Past Due PO"
The issue I'm having is that although multiple conditions may be true for a row, it takes the first true condition and then moves on to the next row. Is it possible to structure the IF statement in a way that it takes the last true condition as opposed to the first?
Thanks!