Forum Discussion
KalyanPrasad
Jun 07, 2024Copper Contributor
Need a formula for inventory
Dear Techies, Consider my input table (INWARD QTY) is And i m looking for an output as shown in the table (STOCK SUMMARY) below. I tried these formulae, but couldn't achiev...
- Jun 07, 2024
Your formulas use H2 and J2 for the date range, but the screenshot shows I2 and K2.
Try this formula:
=SUMPRODUCT(InwardQty[[1-Jun-24]:[31-Jul-24]], (InwardQty[Item Name]=[@[Item Name]])*(DATEVALUE(InwardQty[[#Headers],[1-Jun-24]:[31-Jul-24]])>=$H$2)*(DATEVALUE(InwardQty[[#Headers],[1-Jun-24]:[31-Jul-24]])<=$J$2))
We have to use DATEVALUE since the headers of a table are text, even if they look like dates.
If the date range is in I2 and K2, change $H$2 to $I$2 and $J$2 to $K$2.
Tejas_shah
Jun 07, 2024Brass Contributor
You can use below formula as a different version. I have attached the Sample Work book.
=SUM(INDEX($C$3:$Q$17,MATCH($B22,$B$3:$B$17,0),MATCH($D$20,$C$2:$Q$2,0)):INDEX($C$3:$Q$17,MATCH($B22,$B$3:$B$17,0),MATCH($F$20,$C$2:$Q$2,0)))