Y Yvonneyeong New Member Dec 19, 2018 #1 How to get the summary list for total sum base on multi criteria search base on company and status. Waiting for your prompt reply, thanks! Yvonne Yeong Attachments PT 19.12.2018.xlsx 25.5 KB · Views: 7
How to get the summary list for total sum base on multi criteria search base on company and status. Waiting for your prompt reply, thanks! Yvonne Yeong
B bosco_yip Excel Ninja Dec 19, 2018 #2 Total sum of "total payable" Col L based on company (G4) and status (H4) In I4 enter formula : =SUMPRODUCT((B7:B13=H4)*ISNUMBER(SEARCH(LEFT(D7:D13,FIND(" ",D7:D13&" ")-1),G4)),L7:L13) Regards Bosco
Total sum of "total payable" Col L based on company (G4) and status (H4) In I4 enter formula : =SUMPRODUCT((B7:B13=H4)*ISNUMBER(SEARCH(LEFT(D7:D13,FIND(" ",D7:D13&" ")-1),G4)),L7:L13) Regards Bosco
Y Yvonneyeong New Member Dec 19, 2018 #3 bosco_yip said: Total sum of "total payable" Col L based on company (G4) and status (H4) In I4 enter formula : =SUMPRODUCT((B7:B13=H4)*ISNUMBER(SEARCH(LEFT(D7:D13,FIND(" ",D7:D13&" ")-1),G4)),L7:L13) Regards Bosco Click to expand... Thank you very much. How about if total sum for entire entity with difference status? Attachments PT 19.12.2018.xlsx 25.9 KB · Views: 8
bosco_yip said: Total sum of "total payable" Col L based on company (G4) and status (H4) In I4 enter formula : =SUMPRODUCT((B7:B13=H4)*ISNUMBER(SEARCH(LEFT(D7:D13,FIND(" ",D7:D13&" ")-1),G4)),L7:L13) Regards Bosco Click to expand... Thank you very much. How about if total sum for entire entity with difference status?
B bosco_yip Excel Ninja Dec 19, 2018 #4 Yvonneyeong said: Thank you very much. How about if total sum for entire entity with difference status? Click to expand... 1] Your G4 criteria of company name changed as same as the Col D namelist, then a shorter Sumifs formula can be used instead of Sumproduct. 2] In I4, enter : =SUMIFS(L7:L13,B7:B13,IF(H4="ALL","<>",H4),D7:D13,IF(G4="ALL","<>",G4)) Regards Bosco Last edited: Dec 19, 2018
Yvonneyeong said: Thank you very much. How about if total sum for entire entity with difference status? Click to expand... 1] Your G4 criteria of company name changed as same as the Col D namelist, then a shorter Sumifs formula can be used instead of Sumproduct. 2] In I4, enter : =SUMIFS(L7:L13,B7:B13,IF(H4="ALL","<>",H4),D7:D13,IF(G4="ALL","<>",G4)) Regards Bosco