I INCOMETAX111 Member May 14, 2020 #1 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 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"
Luke M Excel Ninja Staff member May 14, 2020 #2 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)
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)