I m using SUMPRODUCT() function to get the score of each student under multiple criteria.
In the below scenarion the criterias are:
- Name: A
- Week: 42 (falls in range 41 - 45)
- Type: Exam
Using
=SUMPRODUCT((R2:R6=R8)*AND((S2:S6>=R9)*(T2:T6<=R9))*(U2:U6=R10);V2:V6)
i don't manage to get and success. Going through the formula i have understand that i do not manage to get the correct period.
Any ideas how to look on the correct time range?

Try using
SUMPRODUCT()function in the following manner as shown in the screenshot, alsoMS365users can useSUM()function here:• Formula used in cell R11
Edit: Also ensure to change the separators to the one that supports your regional settings, i.e. in place of commas it would be semi-colon
;. This is not needed as the formula multiplies the arrays and sum as well.You don't need the
AND()function in the formula as well, as*operator acts as theAND()function, and just for information the+would act asOR().