Forum Discussion
Fayezsamea
Aug 20, 2020Copper Contributor
Excel Formula needed
P P F P5 P3 P3 P14 P13 P13 P-3 is there a formula that helps me recognize and calculate the total amount P5+P3+P3+P14+P13+P13 = 51 Hrs That only recognize the positive & the lett...
- Aug 20, 2020
Sorry, missed that
Positive only: =SUMPRODUCT(IFERROR(--SUBSTITUTE(A3:J3,"P",""),0)*(IFERROR(--SUBSTITUTE(A3:J3,"P",""),0)>0)) Negative only: =SUMPRODUCT(IFERROR(--SUBSTITUTE(A3:J3,"P",""),0)*(IFERROR(--SUBSTITUTE(A3:J3,"P",""),0)<0))
Fayezsamea
Aug 20, 2020Copper Contributor
SergeiBaklan
Aug 20, 2020Diamond Contributor
As a variant
=SUM(IFERROR(--SUBSTITUTE(A3:J3,"P",""),0))
If your Excel doesn't support dynamic arrays when array formula (Ctrl+Shift+Enter to enter)
- FayezsameaAug 20, 2020Copper Contributor
thank you so much, what if I want only the positive value
P3 P3 P3 P3 P P-3 P13 I want to calculate only the value more than zero and another one with the negative values only
- SergeiBaklanAug 20, 2020Diamond Contributor
Sorry, missed that
Positive only: =SUMPRODUCT(IFERROR(--SUBSTITUTE(A3:J3,"P",""),0)*(IFERROR(--SUBSTITUTE(A3:J3,"P",""),0)>0)) Negative only: =SUMPRODUCT(IFERROR(--SUBSTITUTE(A3:J3,"P",""),0)*(IFERROR(--SUBSTITUTE(A3:J3,"P",""),0)<0))