notyours07
New Member
- Joined
- Oct 12, 2022
- Messages
- 11
- Office Version
- 365
Below is an example of an analysis Table. There is a formula under the Currently On Order column (X) that returns a value from Qty Remaining column (I) in worksheet 'PO Items Data'.
The formula is a follows:
=IF(ISBLANK([@Description])," ",IFERROR(VLOOKUP(SUBSTITUTE(B3,"(ALT) ",""),POTable[#Data],9,FALSE), "0"))
The issue I am having is that the returning value is only for the first occurrence of any one matching Part Number, i.e. Part Number 1A in 'PO Items Data' worksheet has 3 occurrences of ZERO, ZERO, and ONE.
I would prefer the formula to return a total value for all Qty Remaining (I) when the Qty Fulfilled (H) is less than the Qty PO (G).
I am unsure how to insert =IF(H2<G2,I2,"0") in the current formula.
Any suggestions are a great help.
The formula is a follows:
=IF(ISBLANK([@Description])," ",IFERROR(VLOOKUP(SUBSTITUTE(B3,"(ALT) ",""),POTable[#Data],9,FALSE), "0"))
The issue I am having is that the returning value is only for the first occurrence of any one matching Part Number, i.e. Part Number 1A in 'PO Items Data' worksheet has 3 occurrences of ZERO, ZERO, and ONE.
I would prefer the formula to return a total value for all Qty Remaining (I) when the Qty Fulfilled (H) is less than the Qty PO (G).
I am unsure how to insert =IF(H2<G2,I2,"0") in the current formula.
Any suggestions are a great help.