Forum Discussion
PhilB2401
Jul 06, 2023Copper Contributor
Excel Vlookup + Sum multiple values in a column
I have a worksheet where weekly scores are recorded in column D. Identifying number is in Column A. On a separate worksheet, I need to look up the identifier and then return the sum of 4 scores. I have tried =SUM(VLOOKUP(A3, 'DNAv ORS scores'!D:D, {2,3,4,5}, FALSE)) but returning #N/A error.
Can anyone help or provide a suggestion please?
2 Replies
Sort By
Try the SUMIFS function:
=SUMIFS('DNAv ORS scores'!D:D, 'DNAv ORS scores'!D:D, ">=2", 'DNAv ORS scores'!D:D, "<=5", 'DNAv ORS scores'!A:A, A3)
- PhilB2401Copper Contributor
HansVogelaar Thank you. This looks like it has solved my problem.