I have an inventory transaction sheet that I have been working on for a little bit now. Looking at my Stock Alerts column again, it looks like there is an issue.
The purpose of this column is to alert if the quantity requested is greater than or equal to the current quantity. If there is an error, then flag that the item as not listed in the source sheet. But taking the IFERROR out of the equation, I was not receiving a no match error, but an invalid value error. This is only happening on some of the rows and I'm not sure why.
Here the original formula:
=IFERROR(IF(AND((INDEX(COLLECT({Current Quantity}, {Part Code}, [Part Code]@row), 1)) <= Quantity@row, [Transaction Type]@row = "Request"), "REORDER NEEDED", "-"), "Item Not Listed")
Without IFERROR:
=IF(AND((INDEX(COLLECT({Current Quantity}, {Part Code}, [Part Code]@row), 1)) <= Quantity@row, [Transaction Type]@row = "Request"), "REORDER NEEDED", "-")
Any ideas on how to fix this?