Forum Discussion
DBolton10
May 11, 2023Copper Contributor
Excel - Return Value based on multiple criteria
I am trying to work out how to do a lookup based on required quantity. I have a forecast which shows me how many items i need to buy per item, some of the items have price breaks from the vendors so...
- May 11, 2023
=INDEX($F$4:$F$17,MATCH(1,($A$4:$A$17=I4)*($D$4:$D$17<=J4)*($E$4:$E$17>=J4),0))
You can try this formula along with a helper column. In the example the helper column is "Qty to" column E. Enter the formula with ctrl+shift+enter if you don't work with Office 365 or Excel 2021.
HansVogelaar
May 11, 2023MVP
In J4:
=XLOOKUP(I4,FILTER($D$4:$D$17,$A$4:$A$17=H4),FILTER($E$4:$E$17,$A$4:$A$17=H4),"",-1)
You can copy J4 to J6.