Hi everyone,
I'm trying to create an inventory spreadsheet that auto calculates the QTY in the warehouse by subtracting the amount received from the amount signed out. These columns are populated via an index match formula cross referencing another sheet. I also need there to be the caveat that if nothing has been signed out, thus rendering the QTY signed out column to say #NO MATCH, that it is represented in the equation as a 0 so the QTY in warehouse column matches the QTY received.
When I use the formula generator, the output translation reads logically, but the number in the sheet is -1 when 1-1 should be represented as 0.
Code generated and pulling the incorrect math is =IFERROR([QTY Received]@row - [QTY Signed Out]@row, 0 - [QTY Received]@row)
Any clue how to fix?