vlookup index match difficulties

brunetti92

New member
Joined
Jan 30, 2017
Messages
1
Reaction score
0
Points
0
I am have trouble creating an evaluation sheet for my employees. The goal is to print the total scans for each application in the second table for the respective ID number. I have tried nested vlookup along with if statements but run into the problem with vlookup when there are multiple of the same ID numbers since vlookup stops at the first match. I have looked into index match but am not familiar with the formulas and get lost in long equations. Any help would be greatly appreciated.




ABC
1IDApplicationTotal Scans
21234beltsplit12500
31234primarysort1300
41234vpls4000
52345primarysort3000
62345vpls1200
73456beltsplit12000
83456vpls4200
93456primarysort2300

EFGH
1ID
Beltsplit
PrimarySort
VPLS
21234
32345
43456
 
In F2 cell (copy down and across)
Code:
=SUMIFS($C$2:$C$9;$A$2:$A$9;$E2;$B$2:$B$9;F$1)
 
A bog standard pivot table will give you this in less than 15 seconds:
2017-01-30_212722.JPG
 

Attachments

  • ExcelGuru7319.xlsx
    12.4 KB · Views: 5
Back
Top