A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

is there a way to turn off the display of an error message



 
 
Thread Tools Display Modes
  #1  
Old June 7th, 2004, 12:40 AM
jim sturtz
external usenet poster
 
Posts: n/a
Default is there a way to turn off the display of an error message

i have a workbook setup that have several pages in it (for a month) and some
math where a cell that may not be filled in yet is a 0 value.

so i am getting lots of divide by zero errors. it certainly is useful to
know but detracts from the appearance. can this selectively be turned off?

thanks.

jim


  #2  
Old June 7th, 2004, 12:53 AM
Norman Harker
external usenet poster
 
Posts: n/a
Default is there a way to turn off the display of an error message

Hi Jim!

There's different ways of approaching this.

Try amending the formulas that resolve to the error:

Example
=IF(B1=0,"",A1/B1)

This returns an empty looking cell until a numeric entry is made to
B1. But note that it will return #VALUE! if text is input to B1. This
is probably more desirable than the alternative:

=IF(ISERROR(A1/B1),"",A1/B1)

This returns an empty looking cell until a numeric entry is put in B1
but also returns an empty cell if some darned fool puts text in B1.

As a general rule you should hide specific (acceptable) errors rather
than just hide all errors.


--
Regards
Norman Harker MVP (Excel)
Sydney, Australia



  #3  
Old June 7th, 2004, 02:11 AM
CLR
external usenet poster
 
Posts: n/a
Default is there a way to turn off the display of an error message

Assume your formula is +A1/B1 and B1 is the errant cell providing the
zeros.......

Maybe..........

=IF(ISTEXT(B1),"",IF(B10,A1/B1,""))

(will also accomodate text in B1, but does not accomodate negative numbers)

Vaya con Dios,
Chcuk, CABGx3





"jim sturtz" wrote in message
...
i have a workbook setup that have several pages in it (for a month) and

some
math where a cell that may not be filled in yet is a 0 value.

so i am getting lots of divide by zero errors. it certainly is useful to
know but detracts from the appearance. can this selectively be turned

off?

thanks.

jim




  #4  
Old June 7th, 2004, 10:06 AM
jim sturtz
external usenet poster
 
Posts: n/a
Default is there a way to turn off the display of an error message

thanks guys.

jim


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 06:53 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.