How can I use SUMIFS function in excel 2010 -


i have
table-i

a ------------- b ---------c recid-----material-----quantity 2 -----------  ------------ 3 3 ----------- b  ------------ 2 1 -----------  ------------  4 4 -----------  ------------ 2 7 ----------- b  ------------ 4 5 ----------- b  ------------ 1 6 -----------  ------------ 4 

table-ii

a ------------- b ---------- c recid ------date ------crew 2 ------ 12.05.2012 ------a 1 ------ 12.05.2012 ------b 4 ------ 13.05.2012 ------a 3 ------ 14.05.2012------ b 5 ------ 14.05.2012------  7 ------ 13.05.2012 ------b 6 ------ 16.05.2012  ------a 

how can sum material b @ table-iii crew?

for simplicity assume tables , ii on same worksheet, table ii using columns e, f , g, can use "array formula"

=sum(sumifs(c$2:c$8,b$2:b$8,j2,a$2:a$8,if(g$2:g$8=k2,e$2:e$8)))

confirmed ctrl+shift+enter

where j2 specific material , k2 specific crew - see example here


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -