If I understand the request correctly then I believe that the following will yield the values for which you are looking.
Paste the following into cell E6, then drag the fill handle over to cell Q6 and then while cells E6:Q6 are still selected drag the fill handle down to cell Q8:
Formula:
=IF(SUMPRODUCT(('Range Lookup Formula (2)'!$C$6:$C$15<=E$5)*('Range Lookup Formula (2)'!$D$6:$D$15>=E$5)*('Range Lookup Formula (2)'!$B$6:$B$15=$C6)),SUMPRODUCT(('Range Lookup Formula (2)'!$C$6:$C$15<=E$5)*('Range Lookup Formula (2)'!$D$6:$D$15>=E$5)*('Range Lookup Formula (2)'!$B$6:$B$15=$C6),ROW('Range Lookup Formula (2)'!$C$6:$C$15))-5,"0")
This version of the formula may be more computationally efficient as it only calculates the SUMFORMULA function one time:
Formula:
=IFERROR(1/(1/SUMPRODUCT(('Range Lookup Formula (2)'!$C$6:$C$15<=E$5)*('Range Lookup Formula (2)'!$D$6:$D$15>=E$5)*('Range Lookup Formula (2)'!$B$6:$B$15=$C6),ROW('Range Lookup Formula (2)'!$C$6:$C$15)))-5,"0")
Let us know if you have any questions.
Bookmarks