Hello -
I am struggling with a formula that I'm hoping someone can help with. Here is my current data (my apologies for not being able to use the XL2BB addin).
Formula in A2:
Formula in B2:
Formula in C2:
Formula in D2:
The SUMIFS formula in A2 is working correctly. It sums only quantities with a missing promised date. The formulas in B2 through D2 are not working as I had expected. I only want these to sum for the listed date ranges if there is a promised date. If there is no promised date, then it should not sum. Here's what I'm expecting for results:
Any help would be greatly appreciated.
I am struggling with a formula that I'm hoping someone can help with. Here is my current data (my apologies for not being able to use the XL2BB addin).
A | B | C | D | E | F | G | H | I | |
1 | Missing Promised | Today or Prior | 1 to 30 Days | 31 to 60 Days | Vendor | Item | Quantity | Promised | Expected |
2 | 240 | 0 | 120 | 160 | Vendor | 12345 | 40 | 8/1/2023 | |
3 | Vendor | 12345 | 40 | 8/1/2023 | |||||
4 | Vendor | 12345 | 40 | 8/11/2023 | 8/11/2023 | ||||
5 | Vendor | 12345 | 40 | 8/31/2023 | |||||
6 | Vendor | 12345 | 40 | 9/1/2023 | |||||
7 | Vendor | 12345 | 80 | 9/1/2023 |
Formula in A2:
Excel Formula:
=IF($F2=$F1,"",SUMIFS($G:$G,$F:$F,$F2,$H:$H,""))
Formula in B2:
Excel Formula:
=IF($F2=$F1,"",SUMIFS($G:$G,$F:$F,$F2,$H:$H,"<>",$I:$I,"<="&TODAY()))
Formula in C2:
Excel Formula:
=IF($F2=$F1,"",SUMIFS($G:$G,$F:$F,$F2,$H:$H,"<>",$I:$I,">"&TODAY(),$I:$I,"<="&TODAY()+30))
Formula in D2:
Excel Formula:
=IF($F2=$F1,"",SUMIFS($G:$G,$F:$F,$F2,$H:$H,"<>",$I:$I,">"&TODAY()+30,$I:$I,"<="&TODAY()+60))
The SUMIFS formula in A2 is working correctly. It sums only quantities with a missing promised date. The formulas in B2 through D2 are not working as I had expected. I only want these to sum for the listed date ranges if there is a promised date. If there is no promised date, then it should not sum. Here's what I'm expecting for results:
Any help would be greatly appreciated.