• 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.

sumifs

INCOMETAX111

New Member
I want to sum ifs with following conditions
(1)amount in e5:e23 is less than 10000 and
(2)amount in e5:e23 last digit of right cell is not round as "0" and
(3) find text within d5: d23 is "Int." and or "chg"
 

Attachments

  • sumifs bank statement.xlsx
    9.4 KB · Views: 5
I'm not 100% sure what you mean in condition #2, but try this:
=SUMPRODUCT((E5:E23<10000)*ISNUMBER(SEARCH({"Int","Chg"},D5:D23))*(RIGHT(E5:E23,1)<>0)*E5:E23)
 
Back
Top