Forum Discussion
Sachin_Bhangale
Jul 09, 2020Copper Contributor
Sum excluding text
Hi team, Formula 1 : A1 : 10 A2 : 20 A3 : O - 15 A4 : 45 In A4, I need to get sum of A1:A3, excluding alphabets. Formula 2 : A1 : 10 A2 : 20 A3 : O - 15 A4 : A A5 : SL A6 :...
SergeiBaklan
Jul 09, 2020Diamond Contributor
As variant
=SUMPRODUCT(SUBSTITUTE(A1:A3,"O -","")*1)
and
=COUNTIF(A1:A7,"<>*O -*")*25
Sachin_Bhangale
Jul 10, 2020Copper Contributor
Thanks.
Your 2nd formula perfectly works for me. I got formula for 1 from another user.
Thanks.
Your 2nd formula perfectly works for me. I got formula for 1 from another user.
Thanks.
- SergeiBaklanJul 11, 2020Diamond Contributor
Sachin_Bhangale , you are welcome