• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Help out for How to use sumifs with index, match formulas

Yvonneyeong

New Member
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
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


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
Thank you very much. How about if total sum for entire entity with difference status?

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:
Back
Top