How do I make a cell blank if Error OR 0 Result

G

Gregory Day

Currently Cell 'B4' in my worksheet contains the following formula. Now this
formula WORKS. I just want to refine it a tad more. Currently, if cells
AE4,AF4,and AG4 contain and error, then B4 is blank. BUT, if AE4, AF4, and
AG4 are blank, then B$ shows a "0". Which is correct. I would prefer that B$
also be blank in the second senario. How can I modify this formula for that
behavior?

=IF(ISERROR(SUM(SUM(INDIRECT("AE"&ROW())),(INDIRECT("AF"&ROW())),(INDIRECT("AG"&ROW())))/(SUM(COLUMNS((INDIRECT("D"&ROW()):(INDIRECT("AA"&ROW()))))-(COUNTIF(INDIRECT("D"&ROW()):(INDIRECT("AA"&ROW())),"N/A"))))),"",SUM(SUM(INDIRECT("AE"&ROW())),(INDIRECT("AF"&ROW())),(INDIRECT("AG"&ROW())))/(SUM(COLUMNS((INDIRECT("D"&ROW()):(INDIRECT("AA"&ROW()))))-(COUNTIF(INDIRECT("D"&ROW()):(INDIRECT("AA"&ROW())),"N/A")))))
 
D

Dennis

You could cheat by putting conditional formatting on the cell that if the
value is 0 then change the font to white so that it remains as a 0 but simply
can't be seen.
 
G

Gregory Day

Thank you for the suggestion, but wouldn't that may create issues with other
formulas that use those cells. Averaging for example.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top