E Excel-Access Member Mar 19, 2019 #1 Hi Could someone please help me build a formulae to pull data from two tabs. No sure If I have to use SUMIF or SUMPRODUCT or Other. Thanks Attachments Analysis.xlsx Analysis.xlsx 10.8 KB · Views: 13
Hi Could someone please help me build a formulae to pull data from two tabs. No sure If I have to use SUMIF or SUMPRODUCT or Other. Thanks
N Nebu Excel Ninja Mar 19, 2019 #2 Hi: Use the formula Code: =SUMPRODUCT(($A2=Sheet2!$A$2:$A$15)*(C$1=Sheet2!$R$1:$Z$1),Sheet2!$R$2:$Z$15) Thanks Attachments Analysis.xlsx Analysis.xlsx 11.4 KB · Views: 12
Hi: Use the formula Code: =SUMPRODUCT(($A2=Sheet2!$A$2:$A$15)*(C$1=Sheet2!$R$1:$Z$1),Sheet2!$R$2:$Z$15) Thanks
B bosco_yip Excel Ninja Mar 20, 2019 #4 Or, in the case of using SUMIF function In C2, copied across to K2 and all copied down : =SUMIF(Sheet2!$A:$A,$A2,Sheet2!R:R) Regards Bosco Last edited: Mar 20, 2019
Or, in the case of using SUMIF function In C2, copied across to K2 and all copied down : =SUMIF(Sheet2!$A:$A,$A2,Sheet2!R:R) Regards Bosco
Hui Excel Ninja Staff member Mar 20, 2019 #6 or C2: =SUM(IF(Sheet2!$A$2:$A$15=$A2,Sheet2!R$2:R$15,)) Ctrl+Shift+Enter Then copy down and across
E Excel-Access Member Mar 20, 2019 #7 Thank you Hui for alternative option. Much appreciated my friend.