I have a spreadsheet with certain cells dividing other cells by yet further cells - e.g. :
a14 = a15 / a16.
The problem arises when a16 = 0. I get one of those “#DIV!0” jobbies in a14. Now, to me this is no problem - I understand where it’s coming from - however, my boss is not one of the Digerati, and so thinks “it looks like it’s broken”.
So I want to hide the “#DIV!0” without changing the formula. I have tried coditional formatting a14, but that doesn’t work. The problem is that the cell actually reads “a15 / a16” but what appears is “#DIV!0” - so I can’t set it to ignore “#DIV!0” because the PC knows that the cell actually reads “a15 / a16”…
What can I do? Someone please help as I have to email this sheet to someone in about 2 hours…
Nothing as painful! I just meant that rather than lurking around reading everyone’s posts, I finally registered and posted cause someone asked about something I know about.
me too, NoGoodNamesLeft. But I tend to find the fastest and easiest way to do something. Now I know that there’s a CORRECT way too.
I think I’m sticking to fastest and easiest…
Well you can always use conditional formatting, but it really is a sledgehammer to crack a nut.
The IF(ISERROR(),) or the IF(A1=0,) methods are far better.
Also, leaving errors in cells slows down the recalculation of the workbook. When you write spreadsheets that can take upwards of a minute to recalculate (as I sometimes do), every second counts.