Would anyone be able to help see what's wrong with this formula? I'm not sure how I'm screwing this up..
My formula works like this but if the status is anything other than partial I'd like the cell to say "N/A"
=IF(Status@row = "Partial", QTY@row) - [Received Quantity]@row
So I just tried this:
=IF(Status@row = "Partial", QTY@row, "N/A") - [Received Quantity]@row
Ideally I'd like the formula to spit out the QTY column value if the status says anything other than Partial or Received.