Tennisguuy
Well-known Member
- Joined
- Oct 17, 2007
- Messages
- 564
- Office Version
- 2016
- Platform
- Windows
I have the follow formula in cell D26
=IFERROR(IF(AND(C8=0,C14=0,C16=0),"",IF(AND(C8>0,C14>0,C16>0),TEXT(SUM(C26-C6-C10-C12-C18-C20-C22-C24),"#,##0")&""&"(ECPO)"&"-"&TEXT(SUM((C26-C6-C10-C12-C18-C20-C22-C24)/C26),"##.00")*100&""&"%")&"-"&ROUND(SUM(C8,C14,C16)/(D8/1000),3)),IF(C26>0,TEXT(SUM(C26-C6-C10-C12-C18-C20-C22-C24),"#,##0")&""&"(ECPO)"&"-"&TEXT(SUM((C26-C6-C10-C12-C18-C20-C22-C24)/C26),"##.00")*100&""&"%",""))
I have the following values in cells
C6= 123,000 D6=2,407,900
C8=10,000 D8=6,800,000
C10=248,000 D10=32
There is a formula in cell C26 which sums the values in C6-C10-C12-C18-C20-C22-C24. Therefore the value in C26 is 381,000
The formula is return False-1.471. The 1.471 is the valuein C8/D8. If I remove the value in D8 it returns 10,000(ECPO)-3% which is correct. Where I am confused since there is no value in C14 or C16 is showing as false which is correct but then does the ROUND(SUM(C8,C14,C16)/(D8/1000),3)) to get the rate of 1.471. I thought since the skip this entire formula since it is false. I am confused why its doing the &ROUND(SUM(C8,C14,C16)/(D8/1000),3)) since that formula is false.
=IFERROR(IF(AND(C8=0,C14=0,C16=0),"",IF(AND(C8>0,C14>0,C16>0),TEXT(SUM(C26-C6-C10-C12-C18-C20-C22-C24),"#,##0")&""&"(ECPO)"&"-"&TEXT(SUM((C26-C6-C10-C12-C18-C20-C22-C24)/C26),"##.00")*100&""&"%")&"-"&ROUND(SUM(C8,C14,C16)/(D8/1000),3)),IF(C26>0,TEXT(SUM(C26-C6-C10-C12-C18-C20-C22-C24),"#,##0")&""&"(ECPO)"&"-"&TEXT(SUM((C26-C6-C10-C12-C18-C20-C22-C24)/C26),"##.00")*100&""&"%",""))
I have the following values in cells
C6= 123,000 D6=2,407,900
C8=10,000 D8=6,800,000
C10=248,000 D10=32
There is a formula in cell C26 which sums the values in C6-C10-C12-C18-C20-C22-C24. Therefore the value in C26 is 381,000
The formula is return False-1.471. The 1.471 is the valuein C8/D8. If I remove the value in D8 it returns 10,000(ECPO)-3% which is correct. Where I am confused since there is no value in C14 or C16 is showing as false which is correct but then does the ROUND(SUM(C8,C14,C16)/(D8/1000),3)) to get the rate of 1.471. I thought since the skip this entire formula since it is false. I am confused why its doing the &ROUND(SUM(C8,C14,C16)/(D8/1000),3)) since that formula is false.