On a sheet I call "Project Group Hour Totals", I am trying to add the hours from a sheet I call "Project Time Tracker", using VLOOKUP to find both my Project Category and my Project group. My Project Time Tracker Range 1 is the hours column on the project time tracker, and Range 2 includes 6 columns. The project Number being the first and the group being the last.
I've attempted this with SUMIF and AND, which returned an incorrect argument error.
=SUMIF(AND({Project Time Tracker Range 1}, VLOOKUP([Project Category]10, {Project Time Tracker Range 2}, 1, false), VLOOKUP([# of Emp / Group]10, {Project Time Tracker Range 2}, 6, false)))
I've also tried SUMIFS, which returen Unparseable
=SUMIFS({Project Time Tracker Range 1}, (VLOOKUP([Project Category]10, {Project Time Tracker Range 2},1,false),(VLOOKUP([# of Emp / Group]10,{Project Time Tracker Range 2},6,False))
